1.安裝步驟
step1: 下載ninx
<code>$ cd ~/download/ $ wget http://nginx.org/download/nginx-1.8.1.tar.gz </code>
不同版本的下載地址可從http://nginx.org/en/download.html取得。
step2: 解壓縮並安裝
<code>$ tar -zxvf nginx-1.8.1.tar.gz $ cd nginx-1.8.1/ $ ./configure $ make $ make install </code>
查看是否安裝成功
查看/usr/local/目錄下是否有nginx目錄,有則安裝成功。
2.檔案說明
/usr/local/nginx/目錄下的檔案說明:
<code>conf/ 存放配置文件 html/ 存放一些网页文件 logs/ 存放一些日志 sbin/ 一些可执行文件 </code>
3. 安裝時常見的一些問題
./configure的錯誤時間會報如下錯誤:錯誤:
<code>error: the HTTP rewrite module requires the PCRE library. </code>
解決方法:
<code>$ apt-get -y install libpcre3 libpcre3-dev #安装库,之后重新./configure </code>
錯誤2:
<code>error: the HTTP gzip module requires the zlib library </code>
解決方法:
<code>$ apt-get -y install zlib1g zlib1g.dev #安装库,之后重新./configure </code>
參考: http://www.jikexueyuan.com/course/1470_2.html?ss=1Class" 'pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i
').text(i)); }; $numbering.fadeIn(1700); }); });以上就介紹了ubuntu下方安裝nginx,包含了ubuntu方面的內容,希望對PHP教學有興趣的朋友有幫助。