Nginx https/ssl 及反向代理设置
https/ssl 设置
泛域名: w.skiy.net
多个 三级域名均使用同一配置信息
位置:/usr/local/nginx/conf/wildcard/w.skiy.net.conf
listen 443 ssl http2;
listen [::]:443 ssl http2;
#SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
#error_page 404/404.html;
#HTTP_TO_HTTPS_START
if ($server_port !~ 443){
rewrite ^(/.*)$ https://$host$1 permanent;
}
#HTTP_TO_HTTPS_END
#HTTP_TO_HTTPS_END
ssl_certificate /srv/acme/ssl/w.skiy.net.fullchain.cer;
ssl_certificate_key /srv/acme/ssl/w.skiy.net.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
ssl_ciphers TLS13-AES-256-GCM-SHA384:TLS13-CHACHA20-POLY1305-SHA256:TLS13-AES-128-GCM-SHA256:TLS13-AES-128-CCM-8-SHA256:TLS13-AES-128-CCM-SHA256:EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
ssl_prefer_server_ciphers on;
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_session_timeout 10m;
ssl_buffer_size 1400;
add_header Strict-Transport-Security max-age=15768000;
ssl_stapling on;
ssl_stapling_verify on;
error_page 497 https://$host$request_uri;
#HTTP_TO_HTTPS_END
反向代理设置
location / {
proxy_pass http://127.0.0.1:39002;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
}
include wildcard/w.skiy.net.conf;