spa是vue脚手架npm run build 出来的一套静态资源
/home/nodeuser/apps/hcz-weichat/source/dist这个目录存放着静态资源
nginx配置文件如下
/etc/nginx/conf.d/hcz_weichat.conf
server {
listen 80;
server_name domain;
location /favicon.ico {
root /home/nodeuser/apps/hcz-weichat/source/dist;
}
location / {
root /home/nodeuser/apps/hcz-weichat/source/dist;
index index.html;
try_files $uri /index.html;
}
}
no-cache, no-store可以只设置一个
no-cache浏览器会缓存,但刷新页面或者重新打开时 会请求服务器,服务器可以响应304,如果文件有改动就会响应200
no-store浏览器不缓存,刷新页面需要重新下载页面