Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


English

You have nginx at the front end and tomcat hosted internally at port 8080 and you would like to bring Tomcat to the front end accessible via tomcat.sampledomain.com.

In Tomcat's server.xml, add the following connector.


Code Block
titleserver.xml
linenumberstrue
     <Connector port="9090" protocol="HTTP/1.1"
               connectionTimeout="20000" maxThreads="2000"
               scheme="https"
               proxyPort="443"
               redirectPort="443" />

...