default-vue
server { | |
listen 80; | |
listen [::]:80; | |
root /var/www/html/inveniocenter.rilo.com.br/dist; | |
index index.html; | |
server_name inveniocenter.rilo.com.br; | |
location / { | |
try_files $uri $uri/ @rewrites; | |
} | |
location @rewrites { | |
rewrite ^(.+)$ /index.html last; | |
} | |
location ~* \.(?:ico|gif|jpe?g|png)$ { | |
expires max; | |
add_header Pragma public; | |
add_header Cache-Control "public, must-revalidate, proxy-revalidate"; | |
} | |
} |