去官网http://ngin.org下载对应的nginx包,推荐使用稳定版本
创建目录
mkdir /opt/nginx
下载nginx
链接: https://pan.baidu.com/s/1BMGF_GohPEMroC_6C34E7Q 提取码: 8arx,
nginx-1.24.0.tar.gz
下载位置: /opt/nginx
安装依赖环境
1.安装gcc环境
yum install -y gcc-c++
2、安装PCRE库,用于解析正则表达式
yum install -y pcre pcre-devel
3、zlib压缩和解压缩依赖
yum install -y zlib zlib-devel
4、SSL安全的加密的套接字协议层,用于HTTP安全传输,也就是https
yum install -y openssl oopenssl-devel
解压,需要注意,解压后得到的是源码,源码需要编译后才能安装
tar -zxvf nginx-1.24.0.tar.gz
编译之前,先创建nginx临时目录,如果不创建,在启动nginx的过程中会报错
mkdir /var/temp/nginx -p
进入解压后的nginx目录
cd nginx-1.24.0/
在nginx目录,输出如下命令进行配置,目的是为了创建makefile文件
./configure \
--prefix=/usr/local/nginx \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/temp/nginx/client \
--http-proxy-temp-path=/var/temp/nginx/proxy \
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
--http-scgi-temp-path=/var/temp/nginx/scgi
make编译
make
安装
make install
进入sbin目录启动nginx
cd /usr/local/nginx/sbin
启动: ./nginx
停止: ./nginx -s stop
重新加载: ./nginx -s reload
打开浏览器,访问虚拟机所处内网ip即可打开nginx默认页面,显示如下使表示安装成功
搜索nginx
whereis nginx
注意事项:
1.如果在云服务器安装,需要开启默认的nginx端口:80
2.如果在虚拟机安装,需要关闭防火墙
3.本地win或mac需要关闭防火墙
nginx.conf配置文件(nginx显示默认首页)
server {
listen 8001; # 端口
server_name localhost; # 地址location /opt/htmltest {
root html; # 项目文件夹
index index.html index.htm; # 文件夹里的默认访问文件
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}