우 분투 14.04 LTS 설치 Nginx 1.6.1

1654 단어 ubuntu

우 분투 14.04 LTS 설치 Nginx 1.6.1
 
apt - get 으로 오래된 버 전의 nginx 를 설치 하면 apt - get 을 사용 할 수 있 습 니 다. purge nginx 명령 은 설 치 된 오래된 버 전 을 삭제 합 니 다.
 
 
step 1 - 컴 파 일 러 설치
apt-get install build-essential  
apt-get install libtool  

 
다음은 PCRE, zlib, SSL 을 설치 합 니 다.인터넷 문 서 를 참고 하여 다운로드 한 원본 코드 를 디 렉 터 리 에 저장 합 니 다. /usr/local/src
 
step 2 - PCRE 설치, Perl Compatible Regular Expressions
  pcre.org      
tar -zxvf pcre-8.35.tar.gz
cd pcre-8.35
./configure
make
make install

 
step 3 - zlib 설치, http 패키지 gzip 압축 에 사용
  zlib.net      
tar -zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure
make
make install

 
step 4 - openssl 설치
  openssl.org      
tar -zxvf openssl-1.0.1i.tar.gz

 
step 5 - Nginx 설치
  nginx.org           
tar -zxvf nginx-1.6.1.tar.gz
cd nginx-1.6.1
sudo ./configure --conf-path=/usr/local/nginx1.6.1/nginx.conf --pid-path=/usr/local/nginx1.6.1/nginx.pid --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.35 --with-zlib=/usr/local/src/zlib-1.2.8 --with-openssl=/usr/local/src/openssl-1.0.1i
make
make install

 
step 6 - 시작 nginx
#  80       
netstat -ano |grep 80

#  nginx
sudo /usr/local/nginx/sbin/nginx

 
브 라 우 저 에 접근http://localhost, nginx 페이지 에 오신 것 을 환영 합 니 다 열 었 습 니 다!! 
 
 
 
 
 

좋은 웹페이지 즐겨찾기