ASP.NET Core-安装nginx+发布core mvc站点到CentOS

一 安装nginx

第一种方法

1 GCC安装
yum install gcc-c++

安装 nginx 需要先将官网下载的源码进行编译,编译依赖 gcc 环境,如果没有 gcc 环境,则需要安装。

2 PCRE pcre-devel 安装
yum install -y pcre pcre-devel

PCRE(Perl Compatible Regular Expressions) 是一个Perl库,包括 perl 兼容的正则表达式库。nginx 的 http 模块使用 pcre 来解析正则表达式,所以需要在 linux 上安装 pcre 库,pcre-devel 是使用 pcre 开发的一个二次开发库。nginx也需要此库。

3 zlib 安装
yum install -y zlib zlib-devel

zlib 库提供了很多种压缩和解压缩的方式, nginx 使用 zlib 对 http 包的内容进行 gzip ,所以需要在 Centos 上安装 zlib 库。

4 OpenSSL 安装
yum install -y openssl openssl-devel

OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及 SSL 协议,并提供丰富的应用程序供测试或其它目的使用。

nginx 不仅支持 http 协议,还支持 https(即在ssl协议上传输http),所以需要在 Centos 安装 OpenSSL 库。

5 下载 :

官网:https://nginx.org/en/download.html

wget: wget -c [https://nginx.org/download/nginx-1.13.9.tar.gz](https://nginx.org/download/nginx-1.13.9.tar.gz)

tar -zxvf nginx-1.13.9.tar.gz //解压

cd nginx-1.13.9 //进入目录
6 编译安装
./configure //使用默认配置

make&make install //安装

whereis nginx//查找安装路径
7 启动
cd 安装路径/sbin

./nginx  //启动

./nginx -s stop

./nginx -s quit

./nginx -s reload

./nginx -s quit:此方式停止步骤是待nginx进程处理任务完毕进行停止。

./nginx -s stop:此方式相当于先查出nginx进程id再使用kill命令强制杀掉进程

查询nginx进程:ps aux|grep nginx

重启

./nginx -s quit

./nginx

重新加载配置文件

./nginx -s reload

8 开机启动

增加一行 /usr/local/nginx/sbin/nginx

chmod 755 rc.local

第二种方法

1 添加CentOS 7EPEL 库

sudo yum install epel-release

2 安装

sudo yum install nginx

3 启动
sudo systemctl start nginx
sudo firewall-cmd --permanent --zone=public --add-service=http
sudo firewall-cmd --permanent --zone=public --add-service=https
sudo firewall-cmd --reload

二 部署 ASP.NET Core站点

1 nohup dotnet xx.dll &后台运行 站点当前目录下会有 nohup.out文件

2 cmdtail nohup.out可以查看控制台的输出内容

3 ps -ef | grep dotnet查看dotnet下的进程

4 curl http://locahost:5000测试 是否正常

5 修改nginx配置 做反向代理

1 nginx -t 查看配置文件地址

vi /etc/nginx/nginx.conf

在http节点末尾,添加 :include /etc/nginx/hosts/*;

配置目录新增 netcore.conf

server {
listen 80;
index index.html index.htm;
server_name www.bitcaimiao.com; #域名
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_cache_bypass $http_upgrade;
}
}

2 重启nginx

sudo service nginx restart

你可能感兴趣的:(ASP.NET Core-安装nginx+发布core mvc站点到CentOS)