1. 설치 단계
1단계: ninx 다운로드
<code>$ cd ~/download/ $ wget http://nginx.org/download/nginx-1.8.1.tar.gz </code>
각 버전의 다운로드 주소는 http://nginx에서 얻을 수 있습니다. .org/en/download.html을 얻었습니다.
2단계: 압축을 풀고 설치
<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:
오류 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('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });위 내용은 우분투 내용을 포함하여 우분투에서의 nginx 설치에 대해 소개하고 있으니 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.