centos7部署nginx-CSDN博客

阿里云国内75折 回扣 微信号:monov8
阿里云国际,腾讯云国际,低至75折。AWS 93折 免费开户实名账号 代冲值 优惠多多 微信号:monov8 飞机:@monov6

CentOS7安装Nginx-1.16.1稳定版

小白教程一看就会一做就成。

1.安装依赖环境

yum -y install gcc gcc-c++ automake pcre pcre-devel zlib zlib-devel openssl openssl-devel

2.下载安装包不能联网的不行可以留言给我要

wget http://nginx.org/download/nginx-1.16.1.tar.gz

3.解压

tar -zxvf nginx-1.16.1.tar.gz

4.配置环境

cd nginx-1.16.1

./configure --prefix=/usr/local/nginx --with-http_realip_module --with-http_ssl_module

5.解释可以忽略

nginx大部分常用模块编译时./configure --help以--without开头的都默认安装。
--prefix=PATH  指定nginx的安装目录。默认 /usr/local/nginx
--conf-path=PATH  设置nginx.conf配置文件的路径。nginx允许使用不同的配置文件启动通过命令行中的-c选项。默认为prefix/conf/nginx.conf
--user=name 设置nginx工作进程的用户。安装完成后可以随时在nginx.conf配置文件更改user指令。默认的用户名是nobody。--group=name类似
--with-pcre  设置PCRE库的源码路径如果已通过yum方式安装使用--with-pcre自动找到库文件。使用--with-pcre=PATH时需要从PCRE网站下载pcre库的源码版本4.4 – 8.30并解压剩下的就交给Nginx的./configure和make来完成。perl正则表达式使用在location指令和 ngx_http_rewrite_module模块中。
--with-zlib=PATH  指定 zlib版本1.1.3 – 1.2.5的源码解压目录。在默认就启用的网络传输压缩模块ngx_http_gzip_module时需要使用zlib 。
--with-http_ssl_module  使用https协议模块。默认情况下该模块没有被构建。前提是openssl与openssl-devel已安装
--with-http_stub_status_module  用来监控 Nginx 的当前状态
--with-http_realip_module  通过这个模块允许我们改变客户端请求头中客户端IP地址值(例如X-Real-IP 或 X-Forwarded-For)意义在于能够使得后台服务器记录原始客户端的IP地址
--add-module=PATH  添加第三方外部模块如nginx-sticky-module-ng或缓存模块。每次添加新的模块都要重新编译Tengine可以在新加入module时无需重新编译

6.编译安装

make && make install

7.配置开机自启动

#在目录/usr/lib/systemd/system下创建文件nginx.service文件内容如下
[Unit]
Description=nginx
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true

[Install]
WantedBy=multi-user.target

8.操作命令

设置开机启动
# systemctl enable nginx

启动Nginx:
# systemctl start nginx

停止Nginx:
# systemctl stop nginx

重启Nginx:
# systemctl reload nginx

9.完成

阿里云国内75折 回扣 微信号:monov8
阿里云国际,腾讯云国际,低至75折。AWS 93折 免费开户实名账号 代冲值 优惠多多 微信号:monov8 飞机:@monov6
标签: nginxcentos