ui.conf 424 B

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