12 lines
209 B
Nginx Configuration File
12 lines
209 B
Nginx Configuration File
|
|
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
location / {
|
|
try_files $uri /index.html;
|
|
}
|
|
add_header Cache-Control "public, max-age=31536000, immutable";
|
|
}
|