我想在同一台机器上将 apache 设置为我的 tomcat 服务器的 root。Apache 正在侦听端口 80 和 tomcat 到 9090。我的服务的 dns 名称是 example.com.gr 机器 ip 类似于“150.111.111.11 "并且在 httpd 文件中我写了这个
NameVirtualHost *:80
<VirtualHost *:80>
<ServerName example.com.gr
ErrorLog logs/example.com.gr.gr_error_log
TransferLog logs/example.com.gr.gr_access_log
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://150.111.111.11:9090/
ProxyPassReverse / http://150.111.111.11:9090/
<Location />
Order allow,deny
Allow from all
</Location>
</VirtualHost>
但是当我点击 example.com.gr 时,我得到 (110) Connection timed out,但如果我点击 example.com.gr:9090,我会看到我的门户网站。有什么想法吗?