5nginx配置
Posted .NET 技术交流
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5nginx配置相关的知识,希望对你有一定的参考价值。
1、安装
sudo apt-get install nginx
2、启用
sudo service nginx start
3、若要将 Nginx 配置为转发请求向 ASP.NET Core 应用程序的反向代理,修改/etc/nginx/sites-available/default 。 在文本编辑器中打开它,并将内容替换为以下内容:
服务器没有域名,可以写成test即可
server { listen 80; server_name test.com *.test.com; location / { proxy_pass http://localhost:5000; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection keep-alive; proxy_set_header Host $http_host; proxy_cache_bypass $http_upgrade; } }
4、相关命令
//测试配置
sudo nginx -t //重新加载配置
sudo nginx -s reload
以上是关于5nginx配置的主要内容,如果未能解决你的问题,请参考以下文章