installing Nginx Core and Modules from Source,installingnginx


git clone https://github.com/nginx/nginx
cd nginx && ./configure --prefix=$HOME --sbin-path=$HOME/bin/nginx --conf-path=$HOME/nginx/nginx.conf --pid-path=$HOME/nginx/logs/nginx.pid --error-log-path=$HOME/nginx/logs/error.log --http-log-path=$HOME/nginx/logs/access.log --user=$(whoami) --group=nobody --without-http_gzip_module --with-http_rewrite_module -with-http_proxy_module --without-http_ssl_module --with-debug --with-pcre-jit
make -j && make install
$HOME/bin/nginx

相关内容

    暂无相关文章