码迷,mamicode.com
首页 > Web开发 > 详细

Asp.Net Core 快速入门-在Centos 上安装Nginx

时间:2019-05-04 14:58:57      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:follow   vps   http   net   service   star   alt   code   core   

第一步:添加CentOS 7EPEL 库

 在终端运行一下命令

sudo yum install epel-release

技术图片

 第二步:安装Nginx

在终端运行命一下

sudo yum install nginx

你回答“yes”的提示后,nginx会完成安装到你的虚拟专用服务器(VPS)

 

第三步:启动Nginx

sudo systemctl start nginx

启动完成之后我们就可以用CentOS的IP和80端口访问Nginx了

如果无法访问,说明还是有问题

If you are running a firewall, run the following commands to allow HTTP and HTTPS traffic(如果您正在运行防火墙,请运行以下命令以允许HTTP和HTTPS通信)

sudo firewall-cmd --permanent --zone=public --add-service=http 
sudo firewall-cmd --permanent --zone=public --add-service=https
sudo firewall-cmd --reload

 

第四步:查看Nginx 是否安装成功

nginx -v

Asp.Net Core 快速入门-在Centos 上安装Nginx

标签:follow   vps   http   net   service   star   alt   code   core   

原文地址:https://www.cnblogs.com/hsj007/p/10808375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!