nginx ssi

1453 단어 nginxSSI

HttpSsiModule
This module provides a filter which processes Server-Side Includes (SSI) in the input. The list of the supported commands for SSI is currently incomplete.
다음은 테스트 환경의 설정 예제 입 니 다.
1. 역방향 프 록 시 서버, SSI 모듈 을 열 고 역방향 프 록 시 위치 에서 증가:
       location / {
             #  SSI  
             ssi on;
             proxy_intercept_errors on;
             proxy_set_header X-Forwarded-For            $proxy_add_x_forwarded_for;
             proxy_pass http://127.0.0.1:7001;
             error_page 404 =200 /404.html;
             error_page 502 /502.html;
        }

2. 존재 / ssi 의 location 설정 확보
        location /ssi/ {
           alias /app/html/static/;
        }

 
       3. 페이지 사용 ssi 참조

파일 의 위치 에 주의 하 십시오: 예제 ssitest. html 의 실제 호스트 의 파일 위 치 는 / app / html / static / ssi 입 니 다.test.html
The target of "file" or "virtual" must be a location in the server configuration.
http://wiki.nginx.org/HttpSsiModule
매개 변수 전달 과 같은 다른 사용 을 참고 할 수 있 습 니 다.
SSI 가 열 리 면 nginx 는 HTTP 헤더 정보 에 있 는 Last - Modified 와 Content - Length 를 보 내지 않 기 때문에 이 페이지 는 브 라 우 저 캐 시 되 지 않 을 수 있 습 니 다.

좋은 웹페이지 즐겨찾기