Localhost can be run but in public ip does not work. Follow the Following Steps, modify the server.xml file in the Tomcat installation folder. I use the installation mode that is in C: \ Program Files \ Apache Software Foundation \ Tomcat 8.0 \ conf \ server.xml
<Connector port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"/>
tambahkan address="0.0.0.0", to be transformed into this :
<Connector port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" address="0.0.0.0"/>
good luck :)
0 comments:
Post a Comment