原文:Linux服务器部署.Net Core笔记:五、安装Nginx原文:Linux服务器部署.Net Core笔记:五、安装Nginx我们搜索一下yum库关于nginx的rpm包:yum list | grep nginx找到rpm安装包,我们就可以使用yum直接安装了:yum install nginx修改nginx配置文件:vi /etc/nginx/n...
我们搜索一下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
沃梦达教程
本文标题为:Linux服务器部署.Net Core笔记:五、安装Nginx
基础教程推荐
猜你喜欢
- 一个读写csv文件的C#类 2022-11-06
- C# List实现行转列的通用方案 2022-11-02
- C#控制台实现飞行棋小游戏 2023-04-22
- unity实现动态排行榜 2023-04-27
- winform把Office转成PDF文件 2023-06-14
- C# windows语音识别与朗读实例 2023-04-27
- C# 调用WebService的方法 2023-03-09
- ZooKeeper的安装及部署教程 2023-01-22
- linux – 如何在Debian Jessie中安装dotnet core sdk 2023-09-26
- C#类和结构详解 2023-05-30