一、服務器版本:CentOS Linux release 7.4.1708 (Core)nginx
二、nginx版本:nginx-1.14.2.tar.gz c++
三、部署步驟vim
/usr/sbin/groupadd -f www /usr/sbin/useradd -g www www yum install -y pcre-devel openssl-devel yum -y install gcc gcc-c++ autoconf automake make cd /data/application tar xf /data/pkg/nginx-1.14.2.tar.gz cd nginx-1.14.2
./configure --prefix=/data/application/nginx --conf-path=/data/application/nginx/conf/nginx.conf --error-log-path=/data/application/nginx/log/error.log --http-log-path=/data/application/nginx/log/access.log --pid-path=/data/application/nginx/conf/nginx.pid --http-proxy-temp-path=/data/application/nginx/cache/proxy_temp --http-fastcgi-temp-path=/data/application/nginx/cache/fastcgi_temp --user=www --group=www --with-http_realip_module --with-http_gunzip_module --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-http_sub_module --with-http_realip_module --with-http_sub_module
make && make installbash
firewall-cmd --add-port=80/tcp --permanent服務器
firewall-cmd --reloadapp
四、增長自啓動:tcp
vim /lib/systemd/
system
/nginx.service
ide
[Unit] Description=nginx After=network.target [Service] Type=forking ExecStart=/data/application/nginx/sbin/nginx ExecReload=/data/application/nginx/sbin/nginx -s reload ExecStop=/data/application/nginx/sbin/nginx -s quit PrivateTmp=true [Install] WantedBy=multi-user.target
systemctl enable nginx systemctl start nginx