{"id":166,"date":"2021-05-08T20:14:23","date_gmt":"2021-05-08T12:14:23","guid":{"rendered":"http:\/\/yhsbj.cn\/?p=166"},"modified":"2021-05-09T07:16:17","modified_gmt":"2021-05-08T23:16:17","slug":"nginx-%e9%85%8d%e7%bd%ae%e8%b4%9f%e8%bd%bd%e5%9d%87%e8%a1%a1","status":"publish","type":"post","link":"https:\/\/yhsbj.cn\/index.php\/2021\/05\/08\/166\/","title":{"rendered":"Nginx \u914d\u7f6e\u8d1f\u8f7d\u5747\u8861"},"content":{"rendered":"\n<p>Windows\u4e0b\u5728iis\u521b\u5efa3\u4e2a\u7f51\u7ad9\uff0c\u76d1\u542c3\u4e2a\u7aef\u53e3\uff0c\u5206\u522b\u662f9011,9012,9013<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"http:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/1.png\" alt=\"\" class=\"wp-image-167\" width=\"271\" height=\"388\" srcset=\"https:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/1.png 448w, https:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/1-210x300.png 210w\" sizes=\"(max-width: 271px) 100vw, 271px\" \/><\/figure>\n\n\n\n<p>\u521b\u5efaAsp.net core\u7f51\u7ad9\u5e76\u53d1\u5e03\u5230\u4e0a\u97623\u4e2a\u7f51\u7ad9\u91cc\uff0c\u9ed8\u8ba4\u9875\u9762\u5982\u4e0b\u4ee3\u7801\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">public class HomeController : Controller\n{\n    public IActionResult Index()\n    {\n        \/\/\u8fd4\u56de\u5f53\u524d\u7f51\u7ad9\u76ee\u5f55\n        return Content(Directory.GetCurrentDirectory());\n    }\n}<\/pre>\n\n\n\n<p>\u7f16\u5199Nginx\u914d\u7f6e\u6587\u4ef6:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"dracula\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">upstream resinserver {\n    server 127.0.0.1:9011;\n    server 127.0.0.1:9012;\n    server 127.0.0.1:9013;\n}\nserver {\n        listen       80;\n        server_name  localhost;\n        location \/ {\n            root   html;\n            index  index.html index.htm;\n            #\u4e0b\u97622\u884c\u662f\u91cd\u70b9\n            proxy_pass http:\/\/resinserver;\n\t    proxy_set_header Host $host;\n        }\n    }<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"http:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/2-1.png\" alt=\"\" class=\"wp-image-168\" width=\"450\" height=\"369\" srcset=\"https:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/2-1.png 771w, https:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/2-1-300x246.png 300w, https:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/2-1-768x630.png 768w\" sizes=\"(max-width: 450px) 100vw, 450px\" \/><\/figure>\n\n\n\n<p>\u7136\u540e\u542f\u52a8Nginx\uff0c\u6bcf\u6b21\u5237\u65b0\u9875\u9762\u663e\u793a\u4e0d\u540c\u8def\u5f84<\/p>\n\n\n\n<p>\u73b0\u5728\u7684Session\u4f1a\u51fa\u73b0\u4e22\u5931\u95ee\u9898\uff0c\u53ef\u4ee5\u7ee7\u627f\u63a7\u5236\u5668\u5229\u7528Redis + Cookie\u7684session_id\u66ff\u6362\u6389\u539f\u6765\u7684Session<\/p>\n\n\n\n<p>\u8fd8\u53ef\u4ee5\u7528\u4e0b\u9762\u914d\u7f6e\u89e3\u51b3Session\u95ee\u9898\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"dracula\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">upstream resinserver {\n    ip_hash;   #\u6bcf\u4e2a\u7528\u6237\u53ea\u4f1a\u8bf7\u6c42\u5176\u4e2d\u4e00\u4e2aip\u7684\u7f51\u7ad9\n    server 127.0.0.1:9011;\n    server 127.0.0.1:9012;\n    server 127.0.0.1:9013;\n}<\/pre>\n\n\n\n<p>\u4e0b\u9762\u662f\u6548\u679c\u56fe\uff1a<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"http:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/11-1.png\" alt=\"\" class=\"wp-image-169\" width=\"210\" height=\"89\" srcset=\"https:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/11-1.png 338w, https:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/11-1-300x127.png 300w\" sizes=\"(max-width: 210px) 100vw, 210px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"http:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/22-1.png\" alt=\"\" class=\"wp-image-170\" width=\"211\" height=\"68\" srcset=\"https:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/22-1.png 370w, https:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/22-1-300x96.png 300w\" sizes=\"(max-width: 211px) 100vw, 211px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"http:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/33.png\" alt=\"\" class=\"wp-image-171\" width=\"208\" height=\"74\" srcset=\"https:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/33.png 348w, https:\/\/yhsbj.cn\/wp-content\/uploads\/2021\/05\/33-300x107.png 300w\" sizes=\"(max-width: 208px) 100vw, 208px\" \/><\/figure>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Windows\u4e0b\u5728iis\u521b\u5efa3\u4e2a\u7f51\u7ad9\uff0c\u76d1\u542c3\u4e2a\u7aef\u53e3\uff0c\u5206\u522b\u662f9011,9012,9013 \u521b\u5efaAsp.net c [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[22,25,26],"tags":[16,24,23],"_links":{"self":[{"href":"https:\/\/yhsbj.cn\/index.php\/wp-json\/wp\/v2\/posts\/166"}],"collection":[{"href":"https:\/\/yhsbj.cn\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/yhsbj.cn\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/yhsbj.cn\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/yhsbj.cn\/index.php\/wp-json\/wp\/v2\/comments?post=166"}],"version-history":[{"count":9,"href":"https:\/\/yhsbj.cn\/index.php\/wp-json\/wp\/v2\/posts\/166\/revisions"}],"predecessor-version":[{"id":181,"href":"https:\/\/yhsbj.cn\/index.php\/wp-json\/wp\/v2\/posts\/166\/revisions\/181"}],"wp:attachment":[{"href":"https:\/\/yhsbj.cn\/index.php\/wp-json\/wp\/v2\/media?parent=166"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/yhsbj.cn\/index.php\/wp-json\/wp\/v2\/categories?post=166"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/yhsbj.cn\/index.php\/wp-json\/wp\/v2\/tags?post=166"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}