How Do I Get Lucee To Process Files on Port 80?

I have a new AWS EC2 instance running a LAMP stack with Amazon Linux,
Amazon, Tomcat, MySQL, and Lucee (all the latest versions). Everything
runs perfectly on port 8888 for Lucee, and port 80 for all non-Lucee
requests.

What is the best way to have Lucee respond to requests that come in through
port 80, instead of just 8888?

I can post config files for Apache, Tomcat, Lucee, etc. if you tell me
which ones you need to see.

Jim - You’ll need to go into your main tomcat directory > conf > find the
server.xml file. Open server.xml with whatever text editor you like. Do a
search for “<Connector port”. You’ll see:

<Connector port=“8080” protocol=“HTTP/1.1” etc. . . .

change the port value to “80”.

You’ll need to make sure there’s not another service listening on that port
like IIS or apache.On Wednesday, October 19, 2016 at 10:00:43 PM UTC-7, Jim Newton wrote:

I have a new AWS EC2 instance running a LAMP stack with Amazon Linux,
Amazon, Tomcat, MySQL, and Lucee (all the latest versions). Everything
runs perfectly on port 8888 for Lucee, and port 80 for all non-Lucee
requests.

What is the best way to have Lucee respond to requests that come in
through port 80, instead of just 8888?

I can post config files for Apache, Tomcat, Lucee, etc. if you tell me
which ones you need to see.