問題は主にバージョンに依存するようです。Ubuntu 14.04 LTSでは、デフォルトのnginxは古い1.4です。まず、PPAベースのバージョンをインストールする必要があります
https://leftshift.io/upgrading-nginx-to-the-latest-version-on-ubuntu-servers
これを行う方法を示します:
sudo add-apt-repository ppa:nginx/stable
sudo aptitude safe-upgrade
あなたは次のようになるはずです:
nginx -v
nginx version: nginx/1.8.0
xatr0zの答え@から設定https://serverfault.com/a/636455/162693を指す http://www.senginx.org/en/index.php/Proxy_HTTPS_Client_Certificateは
仕事をしません。
機能しない提案
backend {
server some-ip:443;
}
server {
listen 80;
location / {
proxy_ssl_certificate certs/client.crt;
proxy_ssl_certificate_key certs/client.key;
proxy_pass https://backend;
}
}
1.8.0では、そのままでは機能しません。これはおそらくヒントとしてのみ意図されており、そのような設定ファイルとして使用したり、別のバージョンに依存することはありません。
SSLと自己署名クライアント証明書を有効にしたapache2ベースのバックエンドサーバーAでテストしています。Apache config SSLOptionsは次のように設定されています。
SSLOptions +ExportCertData +FakeBasicAuth + StdEnvVars
これにより、バックエンド側のphpinfo()スクリプトがサーバー側とクライアント側の情報を表示するため、状況のデバッグが容易になります。
これを確認するには、私が使用しました:
https:// backend / test / phpinfo
ブラウザにSSL証明書をインストールすると、サーバー証明書のSSL_SERVER_S_DN_CNとクライアント証明書のSSL_CLIENT_S_DN_CNのようなセクションが表示されます。
最初のスタートとして、フロントエンドサーバーBでnginxを構成するために使用しました(括弧内の部分を埋めます)。
server {
listen 8080;
server_name <frontend>;
location / {
proxy_buffering off;
proxy_pass https://<backend>;
#proxy_ssl_certificate certs/<SSL Client Certificate>.crt;
#proxy_ssl_certificate_key certs/<SSL Client Certificate>.key;
}
}
SSLクライアント証明書固有の部分のコメントを外して、リバースプロキシ自体が機能することを確認します。
nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
service nginx restart
nginx stop/waiting
nginx start/running, process 8931
これでhttp:// frontend:8080 / test / phpinfo.phpが機能します
サーバー証明書のSSL_SERVER_S_DN_CNが表示され、クライアント証明書のSSL_CLIENT_S_DN_CN は(まだ)表示されない
コメントを外した後:
server {
listen 8080;
server_name <frontend>;
location / {
proxy_buffering off;
proxy_pass https://<backend>;
proxy_ssl_certificate certs/<SSL Client Certificate>.crt;
proxy_ssl_certificate_key certs/<SSL Client Certificate>.key;
}
}
およびチェック/再起動
nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
service nginx restart
nginx stop/waiting
nginx start/running, process 8931
http:// frontend:8080 / test / phpinfo.phpが機能し、
サーバー証明書のSSL_SERVER_S_DN_CNが表示され、クライアント証明書のSSL_CLIENT_S_DN_CN が表示されます
これで、要求どおりに機能するようになりました。
バグhttps://trac.nginx.org/nginx/ticket/872#ticketに注意してください