nginx - http - concat 와 nginx 를 설치 하여 부 드 럽 게 업그레이드 합 니 다.

2881 단어 nginx
Nginx_concat_module 은 타 오 바 오 가 개발 한 Nginx 기반 HTTP 요청 수량 을 줄 이 는 확장 모듈 로, 전단 사용자 Request 를 줄 이 는 HTTP 요청 수량 을 통합 하 는 데 사 용 됩 니 다.
    다운로드 후 / usr / local / src / 폴 더 에 넣 으 면 nginx 에서 이 디 렉 터 리 를 지정 해 야 합 니 다.
    이것 은 nginx 를 다시 컴 파일 해 야 하기 때문에 nginx 를 업그레이드 시 켰 습 니 다.
최신 버 전 다운로드
 
 
wget http://nginx.org/download/nginx-1.0.15.tar.gz

  
이전에 설치 할 때 어떻게 설정 하 는 지 보 세 요. copy 에서 빨간색 코드 를 보 여 줍 니 다. 여 기 는 아래 에 사용 할 것 입 니 다.
 
/usr/local/nginx/sbin/nginx -V

TLS SNI support disabled
configure arguments: --
prefix=/usr/local/nginx --user=www --group=www --with-http_ssl_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_gzip_static_module --with-http_stub_status_module --http-proxy-temp-path=/var/nginx/proxy --http-fastcgi-temp-path=/var/nginx/fastcgi --http-client-body-temp-path=/var/nginx/client

  
설치 시작, 위의 설정 에 추가 --add - module = / usr / local / src / nginx - http - concat 이 단락
 
tar zxvf nginx-1.0.15.tar.gz
cd nginx-1.0.15.tar.gz

./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_ssl_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_gzip_static_module --with-http_stub_status_module --http-proxy-temp-path=/var/nginx/proxy --http-fastcgi-temp-path=/var/nginx/fastcgi --http-client-body-temp-path=/var/nginx/client --add-module=/usr/local/src/nginx-http-concat

 
 
make

  
여기까지 만 실행 하면 됩 니 다. 제발 make install 하지 마 세 요.
의외 의 발생 을 방지 하기 위해 서 먼저 오래된 버 전 을 백업 하 세 요.
 
mv /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.old

  
방금 컴 파일 한 파일 copy 를 가 져 가세 요.
 
cp -a nginx /usr/local/nginx/sbin/

  
NGINX 가 정상 인지 확인 해 봐.
 
/usr/local/nginx/sbin/nginx -t

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

  
여기 서 nginx 를 업그레이드 하면 됩 니 다. http - concat 를 사용 하려 면 nginx. conf 파일 을 수정 하고 아래 코드 를 추가 해 야 합 니 다.
 
 
location /js/ {
	#   concat   
	#     
	concat on;
	#   concat      (http://m114.org/test/??1.css,2.css,3.css...10.css)           。
	# (  : 10)
	# concat_max_files 10;
	#           ( :http://m114.org/test/??m114.css,m23.js           )
	#       
	# concat_unique on;
	#        
	# (default: application/x-javascript, text/css)
	# concat_types text/html;
} 

 
설치 되 어 있 는데 어떻게 사용 하나 요?
http://localhost/js/??a.js,b.js
물음표 두 개 (?), 합 쳐 야 할 파일 (a. js, b. js)
이렇게 간단 해 요.

좋은 웹페이지 즐겨찾기