CentOS 7 安装Nginx
CentOS 7 安装Nginx 从 Nginx 官网 下载 nginx-1.14.2.tar.gz [root@localhost ~]# wget http://nginx.org/download/nginx-1.14.2.tar.gz 将已下载的Nginx压缩包解压 [root@localhost ~]# tar -zxvf nginx-1.14.2.tar.gz 安装Nginx依赖 [root@localhost ~]# yum -y install pcre* [root@localhost ~]# yum -y install zlib* [root@localhost ~]# yum -y install openssl* 进入解压目录进行编译安装 [root@localhost ~]# cd nginx-1.14.2 [root@localhost ~]# ./configure --with-http_ssl_module 启动Nginx # 找到Nginx安装目录 [root@localhost ~]# whereis nginx # 启动Nginx [root@localhost ~]# ./usr/local/nginx/sbin/nginx 修改防火墙 [root@localhost ~]# vim /etc/sysconfig/iptables