nginx安装配置

nginx

安装              

               依赖:yum install gcc gcc-c++ autoconf automake make  zlib-devel zlib openssl openssl-devel  pcre-devel -y

              下载地址:wget http://nginx.org/download/nginx-1.9.9.tar.gz

               解压:tar -zxvf nginx-1.5.9.tar.gz

              编译安装:./configure --prefix=/usr/local/nginx

               make

               make install

              启动服务:/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

             完成  netstat -tunlp  

平滑重启

        /usr/local/nginx/sbin/nginx -s reload

判断nginx配置是否正确命令

       nginx -t -c /usr/local/nginx/conf/nginx.conf

 

转载于:https://www.cnblogs.com/Su-per-man/p/11542469.html

你可能感兴趣的:(nginx安装配置)