Nginx配置Https


1.申請證書:

https://console.qcloud.com/ssl?utm_source=yingyongbao&utm_medium=ssl&utm_campaign=qcloud

 

2.將證書導入服務器,xftp或者FileZilla都可以:

3.修改Nginx,我的Nginx位於/etc/nginx/ :

 

 

Nginx自帶ssl配置,刪掉注釋,修改證書位置就好了。

 

80端口配置:

server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        #root         /usr/share/nginx/html;
     #注意添加下面這行代碼,用於重定向 rewrite
^(.*) https://$server_name$1 permanent; # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; location / { } error_page 404 /404.html; location = /40x.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } }

443端口設置:

server {
        listen       443 ssl http2 default_server;
        listen       [::]:443 ssl http2 default_server;
        server_name  _;
        root         /usr/share/nginx/html;

#        ssl_certificate "/etc/pki/nginx/server.crt";
#        ssl_certificate_key "/etc/pki/nginx/private/server.key";
        ssl_certificate /etc/nginx/conf.d/1_www.bincoding.cn_bundle.crt;
        ssl_certificate_key /etc/nginx/conf.d/2_www.bincoding.cn.key;
        ssl_session_cache shared:SSL:1m;
        ssl_session_timeout  10m;
        ssl_ciphers HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers on;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

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

 

最后記得重啟Nginx :  service nginx restart

 

參考: 

nginx配置https   https://www.v2ex.com/t/309382

常用服務器配置    https://mozilla.github.io/server-side-tls/ssl-config-generator/


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM