22 lines
330 B
Nginx Configuration File
22 lines
330 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
root /var/www/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /_nuxt/ {
|
|
expires 1y;
|
|
add_header Cache-Control "public";
|
|
}
|
|
|
|
location = /index.html {
|
|
expires -1;
|
|
add_header Cache-Control "no-store";
|
|
}
|
|
}
|