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. 安裝 ...
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 5. 下載並解壓Nginx(之後進入Nginx目錄) wget http://nginx.org/download/nginx-1.12.2.tar.gz 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. 啟動 /usr/local/nginx/sbin/nginx 9. 停止 /usr/local/nginx/sbin/nginx -s stop(reload表示重啟) 10. 瀏覽器訪問Nginx所在機器IP,驗證Nginx啟動成功 http://yourhost/ 註:Nginx配置文件位置 /usr/local/nginx/conf/nginx.conf