{"id":1419,"date":"2024-12-01T01:09:06","date_gmt":"2024-11-30T17:09:06","guid":{"rendered":"https:\/\/www.cithwu.com:5444\/?p=1419"},"modified":"2024-12-01T01:10:44","modified_gmt":"2024-11-30T17:10:44","slug":"nginx-%e5%8f%8d%e4%bb%a3%e8%ae%be%e7%bd%ae","status":"publish","type":"post","link":"https:\/\/blog.cithwu.com\/wp5444\/nginx-%e5%8f%8d%e4%bb%a3%e8%ae%be%e7%bd%ae\/","title":{"rendered":"nginx \u53cd\u4ee3\u8bbe\u7f6e"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code><code>server {\n    listen 443 ssl;\n    server_name yourdomain.com;\n\n    ssl_certificate \/etc\/letsencrypt\/live\/yourdomain.com\/fullchain.pem;\n    ssl_certificate_key \/etc\/letsencrypt\/live\/yourdomain.com\/privkey.pem;\n    ssl_protocols TLSv1.2 TLSv1.3;\n    ssl_ciphers HIGH:!aNULL:!MD5;\n\n    location \/xray {\n        proxy_redirect off;\n        proxy_pass http:\/\/127.0.0.1:12345;  # x-ui \u914d\u7f6e\u7684 WebSocket \u7aef\u53e3\n        proxy_http_version 1.1;\n        proxy_set_header Upgrade $http_upgrade;\n        proxy_set_header Connection \"upgrade\";\n        proxy_set_header Host $host;\n        proxy_set_header X-Real-IP $remote_addr;\n        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n    }\n\n    location \/ {\n        root \/var\/www\/html;\n        index index.html;\n    }\n}\n\nserver {\n    listen 80;\n    server_name yourdomain.com;\n    return 301 https:\/\/$host$request_uri;  # \u5f3a\u5236\u4f7f\u7528 HTTPS\n}\n<\/code><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u914d\u7f6e Nginx<\/strong> \u7f16\u8f91 Nginx \u914d\u7f6e\u6587\u4ef6\uff0c\u901a\u5e38\u4f4d\u4e8e <code>\/etc\/nginx\/sites-available\/default<\/code> \u6216 <code>\/etc\/nginx\/conf.d\/yourdomain.com.conf<\/code><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u914d\u7f6e Nginx \u7f16\u8f91 Ngin&#46;&#46;&#46;<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,9],"tags":[],"class_list":["post-1419","post","type-post","status-publish","format-standard","hentry","category-linux","category-9"],"_links":{"self":[{"href":"https:\/\/blog.cithwu.com\/wp5444\/wp-json\/wp\/v2\/posts\/1419","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.cithwu.com\/wp5444\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.cithwu.com\/wp5444\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.cithwu.com\/wp5444\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.cithwu.com\/wp5444\/wp-json\/wp\/v2\/comments?post=1419"}],"version-history":[{"count":2,"href":"https:\/\/blog.cithwu.com\/wp5444\/wp-json\/wp\/v2\/posts\/1419\/revisions"}],"predecessor-version":[{"id":1421,"href":"https:\/\/blog.cithwu.com\/wp5444\/wp-json\/wp\/v2\/posts\/1419\/revisions\/1421"}],"wp:attachment":[{"href":"https:\/\/blog.cithwu.com\/wp5444\/wp-json\/wp\/v2\/media?parent=1419"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.cithwu.com\/wp5444\/wp-json\/wp\/v2\/categories?post=1419"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.cithwu.com\/wp5444\/wp-json\/wp\/v2\/tags?post=1419"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}