mirror of
https://github.com/germondai/trawl.git
synced 2026-08-17 12:11:23 +02:00
18 lines
394 B
Nginx Configuration File
18 lines
394 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
|
|
gzip on;
|
|
gzip_vary on;
|
|
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
|
|
|
|
location ~* \.(js|css|woff2|svg|ico|png|jpg|webp)$ {
|
|
expires 1y;
|
|
add_header Cache-Control "public, immutable";
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri.html $uri/ /index.html;
|
|
}
|
|
}
|