lnmp 원 키 설치 패 키 지 를 기반 으로 Nginx 에 substitutions 모듈 추가

1052 단어
Nginx 공식 ngxhttp_sub_module 는 하나의 규칙 만 바 꿀 수 있 습 니 다.substitutions 를 사용 하면 여러 개 를 추가 할 수 있 지만 Nginx 는 substitutions 와 공식 적 인 메커니즘 이 다르다 고 말 했다.
일부 원인 으로 인해 서버 에 git 를 설치 하고 싶 지 않 기 때문에 substitutions 공식 적 인 방법 은 사용 할 수 없습니다. 구체 적 인 방법 은 다음 과 같 습 니 다.
1, 다운로드https://github.com/yaoweibin/ngx_http_substitutions_filter_module/archive/v0.6.4.tar.gz
2, 압축 해제 v 0.6.4. tar. gz
3, lnmp 디 렉 터 리 에서 nginx 디 렉 터 리 를 찾 습 니 다.. / configure -- user = ww -- group = ww -- prefix = / usr / local / nginx -- with - httpstub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-ipv6 --with-http_sub_module --add - module = / substitutions 의 다운로드 경로 / v 0.6.4
4,make && make install
5. 사이트 conf 파일 을 수정 하고 다음 과 같은 변경 사항 을 추가 합 니 다.
location / {

        subs_filter_types text/html text/css text/xml;
        subs_filter st(\d*).example.com $1.example.com ir;
        subs_filter a.example.com s.example.com;

    }
6, service nginx restart 또는 / usr / local / nginx / sbin / nginx - s reload

좋은 웹페이지 즐겨찾기