web-dev-qa-db-ja.com

アップストリームSSLを使用してNginxをリバースプロキシとして構成する

Nginxサーバーをリバースプロキシとして構成して、クライアントから受信したhttpsリクエストがhttps経由で上流サーバーにも転送されるようにしています。

これが私が使用する設定です:

http {

    # enable reverse proxy
    proxy_redirect              off;
    proxy_set_header            Host            $http_Host;
    proxy_set_header            X-Real-IP       $remote_addr;
    proxy_set_header            X-Forwared-For  $proxy_add_x_forwarded_for;

    upstream streaming_example_com 
    {
          server WEBSERVER_IP:443; 
    }

    server 
    {
        listen      443 default ssl;
        server_name streaming.example.com;
        access_log  /tmp/nginx_reverse_access.log;
        error_log   /tmp/nginx_reverse_error.log;
        root        /usr/local/nginx/html;
        index       index.html;

        ssl_session_cache    shared:SSL:1m;
        ssl_session_timeout  10m;
        ssl_certificate /etc/nginx/ssl/example.com.crt;
        ssl_certificate_key /etc/nginx/ssl/example.com.key;
        ssl_verify_client off;
        ssl_protocols        SSLv3 TLSv1 TLSv1.1 TLSv1.2;
        ssl_ciphers RC4:HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers on;


        location /
        {
            proxy_pass  https://streaming_example_com;
        }
    }
}

とにかく、リバースプロキシを使用してファイルにアクセスしようとすると、これがリバースプロキシログに表示されるエラーです。

2014/03/20 12:09:07 [エラー] 4113079#0:* 1 SSL_do_handshake()が失敗しました(SSL:エラー:1408E0F4:SSLルーチン:SSL3_GET_MESSAGE:予期しないメッセージ)アップストリームへのSSLハンドシェイク、クライアント:192.168.1.2、サーバー:streaming.example.com、リクエスト:「GET /publishers/0/645/_teaser.jpg HTTP/1.1」、アップストリーム:「 https://MYSERVER.COM:443/publishers/0/645/ _teaser.jpg "、ホスト:" streaming.example.com "

私が間違っていることは何か考えていますか?

43
Alex Flo

エラーを見つけたので、proxy_ssl_session_reuse off;を追加する必要がありました

34
Alex Flo

私の場合、私はCloudflareの背後にあるWebサイトをリバースプロキシしようとしていました。 /var/log/nginx/error.logでも同じエラーが発生しました。私は多くの解決策を試しましたが、これは私にとってうまくいきました:

proxy_ssl_server_name on;

はい、2019年になっても、ホストされているサイトを区別するためにSNIを必要とするサービスもあります。

5
iBug