如何在地址栏中隐藏端口8080?当我调用我的sub.domain.com时,我什么也得不到,但是当我调用我的sub.domain.com:8008时,我得到了应用程序!Allow from all ProxyPass http://127.0.0.1:8080/myapp
ProxyPassReverse http://127.0.0.1:8080<
我试图运行Vagrantpress,默认情况下,Vagrantpress将VM端口80转发给主机端口8080。但是,它报告说另一个应用程序正在使用端口8080,并且无法启动。环顾四周,似乎使用类似lsof | grep :8080的工具应该列出使用端口的应用程序。但是,该命令返回空。使用小牛的网络实用程序>端口扫描,我得到以下信息:
O
12:53:58 PM [Tomcat] Port 8080 in use by "C:\xampp\apache\bin\httpd.exe"!:58 PM [Tomcat] or reconfigure Tomcat and the Control Panel to listen on a different port
什么是阻止访问8080端口的httpd.exe?我看过它是控制台,但为什么需要8080端口?
我使用httpd和tomcat作为我的web应用程序,所以我想删除我的url中的8080端口。
在server.xml中制作了server.xml,但它不起作用。On <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass /MyAppPath http://localhost:8080ProxyPassReverse http://localhost: