tomcat7 - TomCat Application re-writing base URLs -


i looked around here , couldn't seem find answer question. i'm unfortunately not skilled tomcat, easy fix.

we've setup tomcat application standard install, tuns on :8080. offload ssl on our f5 here, if go application url, auto re-direct https://application.blah

while application load https, says insecure though cert offloaded. when view source of application, it's changed address http://application.blah:80, instead of utilizing url.

i tried editting application\web-inf\web.xml , added in:

<init-param>             <param-name>protocol</param-name>             <param-value>https</param-value>         </init-param>          <init-param>             <param-name>port</param-name>             <param-value>8080</param-value>         </init-param> 

however had no effect. tried port 80.

i attempted move application root folder - no luck.

i tried modifying server.xml have connector listed on port 80, 8080, 443 had redirectports pointing 8443, , had enabled 8443 connector port, no luck.

i'm @ loss. or advice appreciated.


Comments

Popular posts from this blog

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -

minify - Minimizing css files -