安裝步驟以下: nginx
安裝pcre 測試
- 下載pcre 下載網址:ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.37.tar.gz
- 解壓文件,命令: sudo tar -zxvf pcre-8.37.tar.gz
- 進入目錄,命令:cd pcre-8.37
- 執行命令:sudo ./configure
- 執行命令:sudo make
- 執行命令:sudo make install
- 如提示:You need a C++ compiler. 則執行命令:sudo apt-get install build-essential 再執行命令: sudo make & make install
安裝openssl ui
- 下載openssl, 下載地址:http://www.openssl.org/source/openssl-1.0.2d.tar.gz
- 解壓文件,命令: sudo tar -zxvf openssl-1.0.2d.tar.gz
- 進入目錄,命令:cd openssl-1.0.2d
- 執行命令:sudo ./configure
- 執行命令:sudo make
- 執行命令:sudo make install
安裝zlib spa
- 下載zlib,下載地址:http://zlib.net/zlib-1.2.8.tar.gz
- 解壓文件,命令: sudo tar -zxvf zlib-1.2.8.tar.gz
- 進入目錄,命令:cd zlib-1.2.8
- 執行命令:sudo ./configure
- 執行命令:sudo make
- 執行命令:sudo make install
安裝nginx .net
- 下載nginx,下載地址:http://nginx.org/download/nginx-1.9.6.tar.gz
- 解壓文件,命令: sudo tar -zxvf nginx-1.9.6.tar.gz
- 進入目錄,命令:cd nginx-1.9.6
- 執行命令:sudo ./configure --with-pcre=/home/develop/software/pcre-8.37 --with-openssl=/home/develop/software/openssl-1.0.2d --with-zlib=/home/develop/software/zlib-1.2.8 --with-http_ssl_module
- 執行命令:sudo make
- 執行命令:sudo make install
OK,nginx安裝完畢,測試一下。
nginx 默認安裝到/usr/local/nginx/ blog
- 執行命令: cd /usr/local/nginx/sbin
- 執行命令: sudo ./nginx
- 打開 http://localhost 看到『Welcome to nginx!』 說明安裝成功。
安裝過程當中出現問題,參考了http://blog.csdn.net/fish43237/article/details/40515897文章,感謝網上資源提供者。 ssl