0
TomcatのJavaアプリケーションをApacheのように設定しました。Apache WebサーバーでTomcat Javaアプリケーションを設定するには?
<VirtualHost *:80>
ServerName domain.com
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass/http://localhost:8080/app_name
ProxyPassReverse/http://localhost:8080/app_name
</VirtualHost>
後でa2ensite adavipalem.conf
を使用してサイトを有効にし、サーバーを再起動しました。
>>domain.com
のようにブラウザからアクセスしようとすると、次のようなブラウザが表示されます。
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at [no address given] to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Apache/2.4.7 (Ubuntu) Server at adavipalem.com Port 80
この設定をどこで変更する必要がありますか?
よろしくお願いします。
httpdの 'error.log'またはTomcatの' catalina.out'にエラーがありますか? –