1. 安裝gcc(centos 7以後通常已自帶,能夠在第6步失敗後再安裝)html
yum install gcc gcc-c++nginx
2. 安裝pcrec++
yum install -y pcre pcre-develcentos
3. 安裝zlib瀏覽器
yum install -y zlib zlib-develhtm
4. 安裝opensslblog
yum install -y openssl openssl-devel教程
5. 下載並解壓Nginx(以後進入Nginx目錄)ip
wget http://nginx.org/download/nginx-1.12.2.tar.gzssl
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
以上這篇5分鐘搞定Nginx安裝的教程就是小編分享給你們的所有內容了,但願能給你們一個參考,也但願你們多多支持腳本之家。
原文連接:http://www.cnblogs.com/gdufs/archive/2017/11/21/7875454.html