ASP.NET Core Web在CentOS中结合Nginx托管的部署

1、安装Nginx,此处省略

2、安装ASP.NET Core,参考微软官方的安装教程:

在 Linux 发行版上安装 .NET - .NET | Microsoft Learn

3、使用你电脑的VS创建一个ASP.NET Core Web 项目,注意.NET版本必须和你在centos上安装的版本一样,然后把发布的程序文件上传到你centos指定目录

4、进入centos的 /etc/systemd/system目录,新建一个文件,文件名为 mydotnet.service

后缀名必须是.service,文件名自取

内容如下:

[Unit]
Description=DotnetCore-7 Program

# Service 配置参数
[Service]
Type=simple
GuessMainPID=true

//发布后的项目程序目录
WorkingDirectory=/home/wwwroot/myweb
StandardOutput=journal
StandardError=journal

//这条语句执行项目程序目录中的主程序 dll
ExecStart=/usr/bin/dotnet idcweb.dll 
Restart=always
RestartSec=10

[Install]
WantedBy=multi-user.target

5、启用mydotnet.service,执行命令:systemctl enable mydotnet.service

6、重启服务后,每次开机都会启动程序,如果更新程序需要重启可以使用systemctl手动重启

7、在nginx的配置文件中,网站配置的server段改为(参考)

server
    {
        listen 80;
        #listen [::]:80;
        server_name 你的域名 ;
        location / {
        
                           #5000是.net程序的端口号,你也可以用 netstat 命令先看下
        proxy_pass         http://127.0.0.1:5000/;

        proxy_http_version 1.1;
        proxy_set_header   Upgrade $http_upgrade;
        proxy_set_header   Connection $connection_upgrade;
        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;
    }

8、之后,每次更新网站,不需要重启nginx,之需要重启.net程序

相关推荐
Domain-zhuo2 分钟前
Git常用命令
前端·git·gitee·github·gitea·gitcode
Rain_Rong10 分钟前
linux检测硬盘
linux·运维·服务器
过过过呀Glik14 分钟前
在 Ubuntu 上安装 Muduo 网络库的详细指南
linux·c++·ubuntu·boost·muduo
菜根Sec32 分钟前
XSS跨站脚本攻击漏洞练习
前端·xss
m0_7482571838 分钟前
Spring Boot FileUpLoad and Interceptor(文件上传和拦截器,Web入门知识)
前端·spring boot·后端
桃园码工1 小时前
15_HTML5 表单属性 --[HTML5 API 学习之旅]
前端·html5·表单属性
真真-真真1 小时前
WebXR
linux·运维·服务器
轩辰~1 小时前
网络协议入门
linux·服务器·开发语言·网络·arm开发·c++·网络协议
百万蹄蹄向前冲2 小时前
2024不一样的VUE3期末考查
前端·javascript·程序员
轻口味2 小时前
【每日学点鸿蒙知识】AVCodec、SmartPerf工具、web组件加载、监听键盘的显示隐藏、Asset Store Kit
前端·华为·harmonyos