Add vhost.conf

This commit is contained in:
2026-02-24 14:22:56 +00:00
parent 2bd2da60ea
commit 4c42f81b70

16
vhost.conf Normal file
View File

@@ -0,0 +1,16 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ $uri.html =404;
}
location ~* \.(jpg|jpeg|png|gif|ico|css|js|mp4|webm)$ {
expires 30d;
add_header Cache-Control "public, no-transform";
}
}