同じマシンの tomcat サーバーのルートに Apache を設定したいと思います。Apache はポート 80 をリッスンし、Tomcat は 9090 をリッスンしています。 "そして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 を押すと自分のポータルが表示されます。何かアイデアはありますか?