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. インストール中のいくつかの一般的な問題
エラー 1 :
<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=1
').addClass( '事前番号付け')。隠れる(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i
').text(i)); }; $numbering.fadeIn(1700); }); }); 上記では、ubuntu のコンテンツを含め、ubuntu での nginx のインストールについて紹介しています。PHP チュートリアルに興味のある友人に役立つことを願っています。