CentOS 7 Nginx部署.NET Core Web应用

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

CentOS 7 Nginx部署.NET Core Web应用

weiwxg   2019-12-06 我要评论

部署.NET Core运行时

必要前提

在安装.NET Core前,需要注册Microsoft签名秘钥并添加Microsoft产品提要,每台机器只需要注册一次,执行如下命令:

sudo rpm -Uvh http://packages.microsoft.com/config/rhel/7/packages-microsoft-prod.rpm

安装.NET Core Runtime

sudo yum install aspnetcore-runtime-3.1

# 验证dotnet core runtime是否安装成功
dotnet

#查看系统中包含的.net core runtime版本
dotnet --list-runtimes

部署Asp.Net Core应用程序

在CentOS系统中,创建/home/publishhttps://img.qb5200.com/download-x/demo文件夹

mkdir /home/publish /home/publishhttps://img.qb5200.com/download-x/demo

在Visual Studio 2019中创建Web应用Linux.Web,发布为文件夹,并通过FXTP上传到publishhttps://img.qb5200.com/download-x/demo文件夹下

Nginx安装与配置

安装nginx

# 安装nginx
yum install nginx

# 启动nginx
systemctl start nginx

# 设为开机启动
systemctl enable nginx

可以通过浏览器访问服务器地址 http://ip:80 来看看nginx运行情况

配置nginx.conf

使用XFTP修改 /etc/nginx/conf.dhttps://img.qb5200.com/download-x/default.conf 文件,添加如下配置

server {
    listen 8000;
 
    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;
    }
 
    error_page 404 /404.html;
        location = /40x.html {
    }
 
    error_page 500 502 503 504 /50x.html;
        location = /50x.html {
    }
}

重启Nginx

nginx -s reload

运行ASP.NET Core应用程序

cd /home/publishhttps://img.qb5200.com/download-x/demo
dotnet Linux.Web.dll

通过浏览器访问 http://ip:8000 此时已经可以访问在CentOS上部署的站点了!

设置 .NET Core 开机启动

创建服务文件

vim /etc/systemd/systemhttps://img.qb5200.com/download-x/demoapp.service

写入如下内容

[Unit]
Description=Demo .NET Web Application running on CentOS 7

[Service]
WorkingDirectory=/home/publishhttps://img.qb5200.com/download-x/demo
ExecStart=/usr/binhttps://img.qb5200.com/download-x/dotnet /home/publishhttps://img.qb5200.com/download-x/demo/Linux.Web.dll
Restart=always
RestartSec=20
SyslogIdentifier=dotnet-demo
User=nginx
Environment=ASPNETCORE_ENVIRONMENT=Production

[Install]
WantedBy=multi-user.target

设置开机启动

systemctl enable demoapp.service

开启服务,并查询状态

systemctl start demoapp.service
systemctl status demoapp.service

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们