server { #gzip on; # 开启gzip gzip on; # 启用gzip压缩的最小文件,小于设置值的文件将不会压缩 gzip_min_length 1k; # gzip 压缩级别,1-10,数字越大压缩的越好,也越占用CPU时间,后面会有详细说明 gzip_comp_level 2; # 进行压缩的文件类型。javascript有多种形式。其中的值可以在 mime.types 文件中找到。 gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png; # 是否在http header中添加Vary: Accept-Encoding,建议开启 gzip_vary on; # 禁用IE 6 gzip gzip_disable "MSIE [1-6]\."; listen 80; server_name _; root /med; index index.html index.htm; location / { try_files $uri /index.html; } location ~* .*(html|json)$ { expires -1s; add_header 'Cache-Control' 'no-store'; } location ~* \.map$ { return 403; } access_log /med/log/access.log; error_log /med/log/error.log; }