Windows XP SP3のIE6でも見れるwebサーバー設定(Let's Encrypt版)
IE6で見れるwebサーバー設定
- cert.pem ← 不要
- chain.pem ← 不要
- fullchain.pem ←
必要
- privkey.pem ←
必要
ssl.conf
server {
listen 443 ssl;
ssl_certificate /opt/ssl/fullchain.pem;
ssl_certificate_key /opt/ssl/privkey.pem;
ssl_session_timeout 5m;
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers DES-CBC3-SHA;
ssl_prefer_server_ciphers on;
}
run.sh
docker run \
--name ssl443 \
--rm \
-d \
-p 443:443 \
-v $(pwd)/data/ssl.conf:/etc/nginx/conf.d/ssl.conf \
-v $(pwd)/data/ssl/:/opt/ssl/ \
-v $(pwd)/data/html/:/etc/nginx/html/ \
nginx:1.11
- nginx 1.11 までがxp対応 (
DES-CBC3-SHA
が使える。)
Author And Source
この問題について(Windows XP SP3のIE6でも見れるwebサーバー設定(Let's Encrypt版)), 我々は、より多くの情報をここで見つけました https://qiita.com/tukiyo3/items/332376ba51fa2d1307ff著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .