2016-12-07 15 views
0

私はインターネット上のすべてを見て、私のために働くどんな解決策も見つけられず、それは私を狂ってしまいます。Apache2リバースプロキシの最初のインストールは永久にロードします

Tomcat8とApache2でサーバーを構成しようとしました。 私はTomcat8をインストールしました(動作しています)、今は私のApacheに問題があります(動作しています)。

今、私はapache2からTomcat8にリバースプロキシを作成しようとしています。

だから私は、このファイルを設定する必要があり:

<VirtualHost *:80> 
     ServerName www.bloombooking.ca 
     ProxyPreserveHost On 
     ProxyRequests On 
     ProxyPass/http://144.217.85.74/ 
     ProxyPassReverse/http://144.217.85.74:8080 
</VirtualHost> 

/etc/apache2/sites-available/www.bloombooking.ca.confしかし、私は私のURLをアクセスもしようとすると、それは永遠にロードされると、私はこれを取得メッセージ:

Proxy Error 

The proxy server received an invalid response from an upstream server. 
The proxy server could not handle the request GET /. 

Reason: Error reading from remote server 

私は、ログを見て、ここで私が得たものであるしている:

[Wed Dec 07 15:36:26.302595 2016] [proxy_http:error] [pid 18024:tid 139855795246848] (70007)The timeout specified has expired: [client 144.217.85.74:41866] AH01102: error reading status line from remote server 144.217.85.74:80 
[Wed Dec 07 15:36:26.302604 2016] [proxy:error] [pid 18024:tid 139855795246848] [client 144.217.85.74:41866] AH00898: Error reading from remote server returned by/
[Wed Dec 07 15:36:26.302762 2016] [proxy_http:error] [pid 18024:tid 139855803639552] (70007)The timeout specified has expired: [client 144.217.85.74:41867] AH01102: error reading status line from remote server 144.217.85.74:80, referer: http://www.bloombooking.ca/ 
[Wed Dec 07 15:36:26.302781 2016] [proxy:error] [pid 18024:tid 139855803639552] [client 144.217.85.74:41867] AH00898: Error reading from remote server returned by /favicon.ico, referer: http://www.bloombooking.ca/ 
[...] 

できる人PLE aseは私を助ける?

答えて

2

ポートはProxyPassディレクティブとにProxyPassReverse

<VirtualHost *:80> 
     ServerName www.bloombooking.ca 
     ProxyPreserveHost On 
     ProxyRequests On 
     ProxyPass "/" "http://an.ip.add.res:8080/" 
     ProxyPassReverse "/" "http://an.ip.add.res:8080/" 
</VirtualHost> 

はProxyPass

ProxyPassディレクティブのために合わせ、あなたの設定で確認してくださいは、バックエンドサーバ

にProxyPassReverseに着信要求のマッピングを指定します

ことと場所を確保するために:バックエンドから生成されたヘッダは、それ自体に代わりバックの、リバースプロキシを指すように変更されている、にProxyPassReverseディレクティブは、ほとんどの場合、

+0

を必要とするそれはそれでした!私は昨日からこのことに悩まされていました。私は5〜6時間のように検索し、最終的に私を救います。ありがとう、本当に。 – Antoine

関連する問題