nginx ssi cache

server {
        listen       0000;
        server_name  localhost;
		
		 
		
		location ~ /api {
			proxy_pass   http://127.0.0.1:7777;
        }
		
		location / {
			ssi on;
            root   C:\Dev\workspace\eclipse\XingYunXing\webapp;
            index  index.html;
			location ~.*\.(html){
				expires 12h;
			}
        }
		

    }

你可能感兴趣的:(nginx ssi cache)