php技术分享主题,个⼈博客php技术分享
安装
1 . 创建 nginx ⽤户useradd nginx
2 . 安装依赖yum install -y pcre pcre-devel gcc gcc-c++ automake zlip zlib-devel openssl openssl-devel
4 . 配置安装cd /usr/local/src/nginx/nginx-1.14.2 && ./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/nginx/ --conf-path=/usr/local/nginx/f --error-log-path=/opt/nginx/log/error.log --http-log-
path=/opt/nginx/log/access.log --pid-path=/usr/local/nginx/run/nginx.pid --lock-path=/usr/local/nginx/run/nginx.lock --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module --with-http_gzip_static_module --http-client-body-temp-path=/var/tmp/nginx/client/ --http-proxy-temp-path=/var/tmp/nginx/proxy/ --http-fastcgi-temp-
path=/var/tmp/nginx/fcgi/ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/tmp/nginx/scgi --with-pcre && make && make install
.
/configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_v2_module --with-http_gzip_static_module --with-http_sub_module --with-stream --with-stream_ssl_module --with-openssl=/root/lnmp1.7/src/openssl-1.1.1g --with-openssl-opt='enable-weak-ssl-ciphers' --add-国内php空间
module=/root/lnmp1.7/src/headers-more-nginx-module
5 . 创建⼯作⽬录mkdir -p /usr/local/nginx/conf && mkdir -p /opt/nginx/log && mkdir -p /usr/local/nginx/run && mkdir -p /var/tmp/nginx/client && mkdir -p /var/tmp/nginx/proxy && mkdir -p /var/tmp/nginx/fcgi && mkdir -p
/var/tmp/nginx/scgi && mkdir -p /var/tmp/nginx/uwsgi
6 . 删除安装⽬录(减少空间)rm -rf /usr/local/src/nginx
7 . 执⾏脚本,运⾏ nginx 服务
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论