centos 7 安装 nginx
时间:2019-10-14 00:10:45
收藏:0
阅读:116
firewall-cmd --state
wget https://github.com/nginx/nginx/archive/release-1.17.4.tar.gz
tar -zxvf release-1.17.4.tar.gz
cd nginx-release-1.17.4/
./auto/configure
yum install pcre pcre-devel -y
yum install zlib zlib-devel -y
yum install openssl openssl-devel -y
./auto/configure
make
make install
cd /usr/local/nginx/
./sbin/nginx
vim /conf/nginx.conf
cd html/原文:https://www.cnblogs.com/qccz123456/p/11668985.html
评论(0)