server { listen 80; server_name example.com *.example.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 $host; proxy_cache_bypass $http_upgrade; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } }
相关文章
- 09-19间接部署 - 在 Linux 上使用 Nginx 托管 ASP.NET Core 网站
- 09-19.NET跨平台之旅:在Linux上以本地机器码(native)运行ASP.NET Core站点
- 09-19在asp.net core中使用托管服务实现后台任务
- 09-19.NET Core2.1项目在Linux上使用验证码报Unable to load shared library 'gdiplus' or one of its dependencies
- 09-19.NET跨平台之旅:生产环境中第2个跑在Linux上的ASP.NET Core站点
- 09-19asp.net core项目 部署在 linux上
- 09-19在Heroku上免费部署ASP.NET Core(使用Docker和CircleCI)
- 09-19.NET Core2.1项目在Linux上使用验证码报Unable to load shared library 'gdiplus' or one of its dependenc
- 09-19在Linux环境下使用Jexus部署ASP.NET Core
- 09-19翻译 - ASP.NET Core 托管和部署 - 在 Linux 上使用 Nginx 托管 ASP.NET Core 网站