我的Nginx编译代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
--conf-path=/data/apps/conf/nginx/nginx.conf \ --error-log-path=/data/apps/log/nginx/error.log \ --http-log-path=/data/apps/log/nginx/access.log \ --http-client-body-temp-path=/data/apps/temp/nginx/client/ \ --http-proxy-temp-path=/data/apps/temp/nginx/proxy/ \ --http-fastcgi-temp-path=/data/apps/temp/nginx/fcgi/ \ --http-uwsgi-temp-path=/data/apps/temp/nginx/uwsgi/ \ --http-scgi-temp-path=/data/apps/temp/nginx/scgi/ \ --group=www \ --prefix=/data/apps/nginx \ --with-http_ssl_module \ --with-http_mp4_module \ --with-http_flv_module \ --with-http_realip_module \ --with-http_image_filter_module \ --with-http_sub_module \ --with-http_gzip_static_module \ --with-pcre=/root/pcre-8.41 \ --with-zlib=/root/zlib-1.2.11 \ --with-openssl=/root/openssl-1.1.0f |