21 lines
378 B
Nginx Configuration File
21 lines
378 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
absolute_redirect off;
|
|
port_in_redirect off;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location ~* \.(?:js|mjs|css|png|jpg|jpeg|gif|svg|ico|woff2?)$ {
|
|
expires 7d;
|
|
add_header Cache-Control "public, max-age=604800, immutable";
|
|
try_files $uri =404;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|