Nginx安装实例分析
1. 安装gcc(centos 7之后一般已自带,可以在第6步失败后再安装)
yum install gcc gcc-c++
2. 安装pcre
yum install -y pcre pcre-devel
3. 安装zlib
yum install -y zlib zlib-devel
4. 安装openssl
yum install -y openssl openssl-devel
wget
6. 编译nginx(加载常用模块如ssl)
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_gzip_static_module --with-http_ssl_module
7. 安装nginx
make && make install
8. 启动
9. 停止
/usr/local/nginx/sbin/nginx -s stop(reload表示重启)
10. 浏览器访问nginx所在机器ip,验证nginx启动成功
http://yourhost/
注:nginx配置文件位置
/usr/local/nginx/conf/nginx.conf
以上就是Nginx安装实例分析的详细内容,更多请关注www.sxiaw.com其它相关文章!