LoginSignup
0
0

More than 3 years have passed since last update.

Windows XP SP3のIE6でも見れるwebサーバー設定(Let's Encrypt版)

Last updated at Posted at 2020-10-19

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が使える。)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0