{"id":207,"date":"2021-01-13T13:39:44","date_gmt":"2021-01-13T05:39:44","guid":{"rendered":"https:\/\/www.ssle.cn\/help\/?p=207"},"modified":"2022-07-16T15:36:44","modified_gmt":"2022-07-16T07:36:44","slug":"nginx-qiang-zhi-tiao-zhuan-dao-https","status":"publish","type":"post","link":"https:\/\/ssle.cn\/help\/nginx-qiang-zhi-tiao-zhuan-dao-https\/","title":{"rendered":"Nginx \u5f3a\u5236\u8df3\u8f6c\u5230HTTPS"},"content":{"rendered":"<p>\u5728Nginx\u7ad9\u70b9\u914d\u7f6e\u4e2d\u589e\u52a0\u4e00\u884c<\/p>\n<pre>rewrite ^(.*)$ https:\/\/$host$1 permanent;<\/pre>\n<p>Nginx\u914d\u7f6e\u67092\u4e2d\u60c5\u51b5, 80 443\u5728\u540c\u4e00\u4e2aserver{} \u548c\u4e0d\u540cserver{}<\/p>\n<p><strong>\u7b2c\u4e00\u79cd \u00a0(\u00a0<code>80\u7aef\u53e3 \u548c 443\u7aef\u53e3\u662f\u5206\u5f00\u7684\u4e24\u4e2aserver{}<\/code>\u00a0):<\/strong><\/p>\n<pre>server {\r\n    listen   80;\r\n    listen   [::]:80;\r\n\r\n    server_name www.example.com;\r\n\r\n    return 301 https:\/\/$server_name$request_uri;\r\n}\r\nserver {\r\n    listen   443 ssl;\r\n\r\n    server_name www.example.com;\r\n\r\n    ssl_certificate        \/path\/www.example.com.crt;\r\n    ssl_certificate_key  \/path\/www.example.com.key;\r\n\r\n}<\/pre>\n<p><strong>\u7b2c\u4e8c\u79cd (<code>80 443\u7aef\u53e3\u5728\u540c\u4e00\u4e2aserver{}<\/code>\u00a0):<\/strong><\/p>\n<pre>server {\r\n    listen   80;\r\n    listen   [::]:80;\r\n    listen   443 ssl;\r\n\r\n    server_name www.example.com;\r\n\r\n    ssl_certificate        \/path\/www.example.com.crt;\r\n    ssl_certificate_key  \/path\/www.example.com.key;\r\n\r\n    if ($scheme = http) {\r\n        return 301 https:\/\/$server_name$request_uri;\r\n    }\r\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u5728Nginx\u7ad9\u70b9\u914d\u7f6e\u4e2d\u589e\u52a0\u4e00\u884c rewrite ^(.*)$ https:\/\/$host$1 permanent; Nginx\u914d\u7f6e\u67092\u4e2d\u60c5\u51b5, 80 443\u5728\u540c\u4e00\u4e2aserver{} \u548c\u4e0d\u540cserver{} \u7b2c\u4e00\u79cd \u00a0(\u00a080\u7aef\u53e3 \u548c 443\u7aef\u53e3\u662f\u5206\u5f00\u7684\u4e24\u4e2aserver{}\u00a0): server { liste &hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[9],"tags":[],"class_list":["post-207","post","type-post","status-publish","format-standard","hentry","category-qiang-zhi-https-fang-wen"],"_links":{"self":[{"href":"https:\/\/ssle.cn\/help\/wp-json\/wp\/v2\/posts\/207","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ssle.cn\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ssle.cn\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ssle.cn\/help\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ssle.cn\/help\/wp-json\/wp\/v2\/comments?post=207"}],"version-history":[{"count":0,"href":"https:\/\/ssle.cn\/help\/wp-json\/wp\/v2\/posts\/207\/revisions"}],"wp:attachment":[{"href":"https:\/\/ssle.cn\/help\/wp-json\/wp\/v2\/media?parent=207"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ssle.cn\/help\/wp-json\/wp\/v2\/categories?post=207"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ssle.cn\/help\/wp-json\/wp\/v2\/tags?post=207"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}