Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,并在一个BSD-like 协议下发行。其特点是占有内存少,并发能力强,事实上nginx的并发能力确实在同类型的网页服务器中表现较好。
安装nginx
安装epel-release源并进行安装
yum install epel-release
yum update
yum install nginx
防火墙执行相关的应用操作:
systemctl start nginx #启动
systemctl stop nginx #停止
systemctl restart nginx #重启
systemctl status nginx #查看运行状态
systemctl enable nginx #开机启动
设置防火墙
在启动完以后可能无法通过IP访问,需要进一步设置防火墙:
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
nginx启动与关闭
pkill -f nginx #关闭
nginx #启动
安装完成后,在自己windows电脑上输入ip,即可访问到nginx欢迎页面,如下所示:
——————————————————————————————————————————
项目的完整代码:django_blog
觉得有用的欢迎给个star。