>백엔드 개발 >PHP 튜토리얼 >ubuntu ubuntu15.04 linux ubuntu 16.04에 nginx 설치

ubuntu ubuntu15.04 linux ubuntu 16.04에 nginx 설치

WBOY
WBOY원래의
2016-07-29 08:54:001065검색

1. 설치 단계

  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. 2단계: 압축을 풀고 설치

    <code>$ tar -zxvf nginx-1.8.1.tar.gz 
    $ cd nginx-1.8.1/
    $ ./configure
    $ make
    $ make install
    </code>
  3. 설치 성공 여부 확인

    /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 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.