Linux服务器部署.Net Core笔记:五、安装Nginx
程序员文章站
2023-11-10 21:40:22
我们搜索一下yum库关于nginx的rpm包:yum list | grep nginx 找到rpm安装包,我们就可以使用yum直接安装了:yum install nginx 修改nginx配置文件:vi /etc/nginx/nginx.conf 注释掉下面的配置: 创建一个netcore.con ......
我们搜索一下yum库关于nginx的rpm包:yum list | grep nginx
找到rpm安装包,我们就可以使用yum直接安装了:yum install nginx
修改nginx配置文件:vi /etc/nginx/nginx.conf
注释掉下面的配置:
# server { # listen 80 default_server; # listen [::]:80 default_server; # server_name _; # root /usr/share/nginx/html; # # # load configuration files for the default server block. # include /etc/nginx/default.d/*.conf; # # location / { # } # # error_page 404 /404.html; # location = /40x.html { # } # # error_page 500 502 503 504 /50x.html; # location = /50x.html { # } # }
创建一个netcore.conf配置文件:vi /etc/nginx/conf.d/netcore.conf
添加配置:
server { listen 80; location / { proxy_pass http://localhost:81; } }
启动nginx:systemctl start nginx
常用命令,重启nginx:
nginx -s reload
上一篇: SpringBoot之【mybatisplus】代码生成器
下一篇: 一个二位数组,每个元素都可以往上下左右四个方向走,寻找最长递增路径。如下图所示,最长递增路径即红色字体路径。白纸写代码。
推荐阅读
-
Linux服务器部署.Net Core笔记:五、安装Nginx
-
Linux服务器部署.Net Core笔记:四、安装Supervisor进程守护
-
Linux服务器部署.Net Core笔记:目录
-
Linux下自动化部署ASP.NET CORE 3.1(Docker+Jenkins+Nginx)
-
So Easy - 在Linux服务器上部署 .NET Core App
-
Linux服务器部署.Net Core笔记:一、开启ssh服务
-
.Net Core 在Linux服务器下部署程序--(2). 部署前需要安装的软件及SDK
-
.Net Core 在Linux服务器下部署程序--(1). Windows 连接 Linux服务器
-
详解Asp.Net Core 发布和部署( MacOS + Linux + Nginx )
-
Linux服务器下利用Docker部署.net Core项目的全过程