server {
listen port;
server_name your.host.name;
rewrite_log on;
charset utf8;
root /home/path/xxxxx;
index index.html;
client_max_body_size 100m;
access_log /home/xxxx/access.log ;
error_log /home/xxxx/error.log;
location ~* \.(html)$ {
root /home/path/xxxxx;
etag on;
expires 30d;
index index.html;
}
gzip on;
# 启用gzip压缩的最小文件,小于设置值的文件将不会压缩
gzip_min_length 1k;
# gzip 压缩级别,1-10,数字越大压缩的越好,也越占用CPU时间,后面会有详细说明
gzip_comp_level 6;
# 进行压缩的文件类型。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 font/ttf font/otf image/svg+xml;
# 是否在http header中添加Vary: Accept-Encoding,建议开启
gzip_vary on;
# 禁用IE 6 gzip
gzip_disable "MSIE [1-6]\.";
location ~* \.(css|js|jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|map|mp4|ogg|ogv|webm|htc)$ {
root /home/path/xxxxx;
index index.html;
expires 1M;
access_log off;
add_header Cache-Control "public";
}
}
vue的nginx配置参考
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- vue-router 或者 react-router 路由模式有两种,一种是使用hash来控制视图的跳转。另一种是...
- vue单页应用使用vue-router会有两种配置,即history模式和hash模式,但是hash模式其实会有很...