Hi I have two service running in tomcat. First service 'catalina' is having connector port 80, 443, 8080 and 8444. Second service 'catalina_advance' have connector port 8081 and 8444.
For catalina_advance, I entered a new tomcat access log file with configuration <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="%t %a %h %u %l %p %m %U %H %s %b %D" prefix="localhost_access_log" rotatable="false" suffix=".txt"/> Now whe I hit the url http://ip-address:8081/context The port print in access log file is 8081 When when I hit the url https://ip-address:8444/context The port always print as 443. Why this is happening -Anil