nginx - http - concat 와 nginx 를 설치 하여 부 드 럽 게 업그레이드 합 니 다.
2881 단어 nginx
다운로드 후 / 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)
이렇게 간단 해 요.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.