WSL Ubuntu18.04 编译安装 nignx

http://nginx.org/en/download.html

wget http://nginx.org/download/nginx-1.14.0.tar.gz

sudo apt install build-essential libtool libpcre3 libpcre3-dev zlib1g-dev openssl libssl-dev  -y

./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-file-aio --with-http_realip_module

sudo make

sudo make install

groupadd www    

useradd www -g www  

chown -R www:www /usr/local/nginx 

启动

sudo /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

猜你喜欢

转载自www.cnblogs.com/8000cabbage/p/9501519.html