Nginx https/ssl 及反代设置
https/ssl 设置
泛域名: xx.com
多个二级域名均使用同一配置信息
位置:/usr/local/nginx/conf/wildcard/ww.com.conf
listen 443 ssl http2;
listen [::]:443 ssl http2;
#SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
#error_page 404/404.html;
#HTTP_TO_HTTPS_START
if ($scheme != "https") {
return 301 https://$host$request_uri;
}
#HTTP_TO_HTTPS_END
ssl_certificate /srv/acme/ssl/xx.com.fullchain.cer;
ssl_certificate_key /srv/acme/ssl/xx.com.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
反代设置
位置: /usr/local/nginx/conf/vhost/xx.com.conf
location / {
proxy_pass http://127.0.0.1:39001;
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/xx.com.conf;
完整的文件内容
server
{
listen 80;
listen [::]:80;
server_name aa.xx.com;
index index.php index.html index.htm default.php default.htm default.html;
root /data/wwwroot/proxy;
charset utf-8;
#ERROR-PAGE-START 错误页配置,可以注释、删除或修改
#error_page 404 /404.html;
#error_page 502 /502.html;
#ERROR-PAGE-END
#禁止访问的文件或目录
location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md|install.php|install)
{
return 404;
}
location / {
proxy_pass http://127.0.0.1:39001;
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;
}
#一键申请SSL证书验证目录相关设置
location ~ \.well-known{
allow all;
}
include wildcard/xx.com.conf;
access_log /data/wwwlogs/aa.xx.com.log;
error_log /data/wwwlogs/aa.xx.com.error.log debug;
}