443端口正常,下图是网站配置规则- server
- {
- listen 80;
- listen 443 ssl http2;
- server_name egg.xxedu.xyz;
- index index.html index.htm default.htm default.html;
- #root /www/wwwroot/egg.xxedu.xyz;
-
- #SSL-START SSL相关配置
- #error_page 404/404.html;
- #HTTP_TO_HTTPS_START
- if ($server_port !~ 443){
- rewrite ^(/.*)$ https://$host$1 permanent;
- }
- #HTTP_TO_HTTPS_END
- ssl_certificate /www/server/panel/vhost/cert/eggxxedu/fullchain.pem;
- ssl_certificate_key /www/server/panel/vhost/cert/eggxxedu/privkey.pem;
- ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
- ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
- ssl_prefer_server_ciphers on;
- ssl_session_cache shared:SSL:10m;
- ssl_session_timeout 10m;
- add_header Strict-Transport-Security "max-age=31536000";
- error_page 497 https://$host$request_uri;
-
- #SSL-END
-
- #ERROR-PAGE-START 错误页相关配置
- #error_page 404 /404.html;
- #error_page 502 /502.html;
- #ERROR-PAGE-END
-
-
- #REWRITE-START 伪静态相关配置
- include /www/server/panel/vhost/rewrite/node_eggxxedu.conf;
- #REWRITE-END
-
- #禁止访问的文件或目录
- location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md|package.json|package-lock.json|\.env|node_modules) {
- return 404;
- }
-
- #一键申请SSL证书验证目录相关设置
- location /.well-known/ {
- root /www/wwwroot/egg.xxedu.xyz;
- }
- # HTTP反向代理相关配置开始 >>>
- location ~ /purge(/.*) {
- proxy_cache_purge cache_one $host$request_uri$is_args$args;
- }
- location / {
- proxy_pass http://127.0.0.1:7001;
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header REMOTE-HOST $remote_addr;
- add_header X-Cache $upstream_cache_status;
- proxy_connect_timeout 30s;
- proxy_read_timeout 86400s;
- proxy_send_timeout 30s;
- proxy_http_version 1.1;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection "upgrade";
- }
- # HTTP反向代理相关配置结束 <<<
-
- access_log /www/wwwlogs/eggxxedu.log;
- error_log /www/wwwlogs/eggxxedu.error.log;
- }
复制代码 |