I am using AWS EC2 and Centos.
Before I installed apache tomacat 9, I still able to access my website in port 80, or at least I can access my ip address in browser with welcome page. But after installing apache tomcat, all my virtual host in port 80 is going to apache tomcat page.
Here is the network status
And when I open the localhost_access_log.2020-04-28.txt under my tomcat directory, I can see that all accesses to my website which should be in port 80 are shown in that log, as shown in the image bellow
Here is the server.xml in the tomcat
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<!-- A "Connector" using the shared thread pool-->
<Connector executor="tomcatThreadPool"
port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
By the configuration above, tomcat should go to port 8080. But the fact is that all my virtual host (port 80) is redirected to apache tomcat page.
Can please help me what is wrong here. I do really need to fix it asap, tried to fix it from yesterday but seems like the only way is asking it here.
Many thanks in advance...