当前位置:   article > 正文

nginx配置SSL协议,80端口443端口。和非80/443端口_listen 80 443

listen 80 443

1、80/443

server {

listen 80;

server_name www.域名.com;

rewrite ^(.*) https://$server_name$1 permanent;

}

server {

listen 443;

server_name www.域名.com;

root /home/www;

ssl on;

ssl_certificate /etc/nginx/certs/server.crt;

ssl_certificate_key /etc/nginx/certs/server.key;

}

 

2、非80、443接口

加粗黑体字为关键ssl认证代码

server {
        listen       2019 ssl;
        server_name  xk.thinkhub.com.cn;
        ssl on;
        ssl_certificate   cert/2698782_xk.thinkhub.com.cn.pem;
        ssl_certificate_key  cert/2698782_xk.thinkhub.com.cn.key;
        ssl_session_timeout 5m;
        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        ssl_prefer_server_ciphers on;

       这里是重点,价格下面 一行,http就能跳转到https
       error_page 497 301 https://$http_host$request_uri;


        #charset koi8-r;
        #access_log  logs/host.access.log  main;
        root         D:/XinKang/rehabilitation/rmyy/dist; #vue项目的打包后的dist
        location / {
            try_files $uri $uri/ @router;#需要指向下面的@router否则会出现vue的路由在nginx中刷新出现404
            index  index.html index.htm;
        }
        
        #对应上面的@router,主要原因是路由的路径资源并不是一个真实的路径,所以无法找到具体的文件
        #因此需要rewrite到index.html中,然后交给路由在处理请求资源
        location @router {
            rewrite ^.*$ /index.html last;
        }

     
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

     
    }

参考文献

https://blog.csdn.net/weixin_44316575/article/details/85328224

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/103518?site
推荐阅读
相关标签
  

闽ICP备14008679号