.NET Core部署到CenterOS 7

.NET Core部署到CenterOS 7


(1)安装CenterOS7
(2)修改 vi /etc/sysconfig/network-Scripts/ifcfg-ens33 的值为yes,退出保存,重启 service network restart
(3)安装 sudo yum install net-tools
(4)输入ifconfig查看IPi地址,用Putty工具连接;
(5)开始安装nginx

# yum install epel-release
# yum install nginx 
# systemctl start nginx
# systemctl enable nginx
# systemctl status nginx
# firewall-cmd --zone=public --permanent --add-service=http
# firewall-cmd --zone=public --permanent --add-service=https
# firewall-cmd --reload

官方地址:
https://www.tecmint.com/install-nginx

你可能感兴趣的:(.NET Core部署到CenterOS 7)