nginx 버전 업그레이드

2016. 11. 21. 09:12OS/리눅스

반응형

nginx 설치

 

root@ #> service nginx stop

root@ #> mv nginx nginx_bak                <--------- 기존에 있던 1.9 버전 nginx 디렉토리를 백업으로 변경

root@ #> wget http://nginx.org/download/nginx-1.10.2.zip

root@ #> tar xvzf nginx-1.10.2.tar.gz

root@ #> cd nginx-1.10.2/src/core


 

root@xxx /core/ #> cd /nginx-1.10.2/

root@xxx /nginx-1.10.2/ #> ./configure --prefix=/nginx --conf-path=/nginx/conf/nginx.conf --error-log-path=/logs/error.log --http-log-path=/nginx/logs/access.log --with-http_ssl_module --with-http_stub_status_module --with-http_flv_module --with-http_gzip_static_module --with-http_mp4_module --with-http_secure_link_module --with-http_random_index_module

------------------------------------------------------------------------------------------

--prefix=*** : 컴파일후 관련된 파일들이 설치되는 디렉토리를 지정.

--conf-path=*** : config 파일이 저장되는 디렉토리를 지정

--error-log-path=*** : 에러 로그가 저장되는 디렉토리를 지정

--http-log-path=*** : http 로그가 저장되는 디렉토리를 지정

--with-*** : 해당 모듈을 함께 컴파일 하여 모듈 사용

------------------------------------------------------------------------------------------

 

root@ #> make

root@ #> make install

 

root@ #> cd /nginx.bak/conf/

root@ #> cp nginx.conf /nginx/conf/.         <--------- 기존의 config 파일 덮어쓰기

root@ #> service nginx start

root@ #> cd /path

root@ #> 해당 디렉토리에 짧은 영상을 넣고 스트리밍 테스트

 

웹주소에 IP 주소/경로/파일이름 으로 테스트

Ex ) http://xxx.xxx.xxx.xxx/path/filename.mp4

반응형