nginx-安装
yum安装方式
1、创建一个名为 /etc/yum.repos.d/nginx.repo 的文件
[nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=0 enabled=1
yum -y install nginx
systemctl start nginx
systemctl enable nginx (开机自启)
如果是云服务器还需要在云平台添加允许80端口规则
源码安装方式
一、安装nginx
1、安装依赖
yum install pcre pcre-devel
2、下载安装nginx源码包
这边下的是nginx1.24.0源码包
https://nginx.org/download/nginx-1.24.0.tar.gz
配置和编译
./configure \
--prefix=/opt/nginx \
--with-http_realip_module \
--with-http_sub_module \
--with-http_gzip_static_module \
--with-http_stub_status_module \
--with-pcre
make
make install
注意 --prefix=/opt/nginx 即为自定义安装的目录