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
原文地址:https://www.cnblogs.com/8000cabbage/p/9501519.html
时间: 2024-11-09 16:04:05