| 1234567891011121314151617 |
- server {
- listen 80;
- server_name localhost;
- root /usr/share/nginx/html;
- index index.html;
- # 静态资源缓存
- location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
- expires 1y;
- add_header Cache-Control "public, immutable";
- }
- # Vue Router History Mode 支持 - 所有路由都返回 index.html
- location / {
- try_files $uri $uri/ /index.html;
- }
- }
|