CentOS7下让Asp.Net Core的网站自动运行

Posted wdw984

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7下让Asp.Net Core的网站自动运行相关的知识,希望对你有一定的参考价值。

一、安装nginx

yum install nginx

二、配置Nginx

vi /etc/nginx/nginx.conf

location / {
            proxy_pass http://127.0.0.1:5000;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection keep-alive;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_cache_bypass $http_upgrade;
        }

  

三、设置Nginx开机启动

systemctl enable nginx.service

四、安装守护进程工具

yum install supervisor

五、配置守护进程信息

cd /etc/supervisord.d

vi videoserver.ini

[program:VideoServer.Site]
command=dotnet VideoCheckServer.dll
directory=/usr/bin/videoserver
environment=ASPNETCORE__ENVIRONMENT=Production
user=root
stopsignal=INT
autostart=true
autorestart=true
startsecs=3
stderr_logfile=/var/log/videoserver.err.log    
stdout_logfile=/var/log/videoserver.out.log

supervisord -c /etc/supervisord.conf

六、设置开机启动守护工具

systemctl enable supervisord.service

以上是关于CentOS7下让Asp.Net Core的网站自动运行的主要内容,如果未能解决你的问题,请参考以下文章

ASP.NET Core Web 应用程序开发期间部署到IIS自定义主机域名并附加到进程调试

ASP.NET Core 请求本地化选项

Asp.Net Core Razor 页面网站非常慢

使用 JWT 令牌的 ASP.NET Core 网站到 WebApi 身份验证

ASP.NET Core 2.0 自动化发布和部署(Centos7 & Docker & Jenkins )

ASP.NET Core 网站在 30 分钟后超时