CentOS 65 安装 Nginx 178 教程
程序员文章站
2022-05-30 17:50:16
...
Linux系统:Centos
6.5 x64
Nginx版本:1.7.8
1、安装prce(重定向支持)和openssl(https支持,如果不需要https可以不安装。)
2、下载nginx 1.7.8
Nginx版本:1.7.8
1、安装prce(重定向支持)和openssl(https支持,如果不需要https可以不安装。)
- yum -y install pcre*
- yum -y install openssl*
2、下载nginx 1.7.8
- wget http://nginx.org/download/nginx-1.7.8.tar.gz
- tar -zxvf nginx-1.7.8.tar.gz
- cd nginx-1.7.8
- ./configure --prefix=/usr/local/nginx-1.5.1
\
- --with-http_ssl_module --with-http_spdy_module
\
- --with-http_stub_status_module --with-pcre
- make
- make install
- /usr/local/nginx-1.7.8/sbin/nginx
- /usr/local/nginx-1.7.8/sbin/nginx -s
reload
- /usr/local/nginx-1.7.8/sbin/nginx -s stop
- service iptables stop
- vi /etc/sysconfig/iptables
- -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
- service iptables restart
Welcome to nginx!
以上就介绍了CentOS 65 安装 Nginx 178 教程,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。