[add] construction landing page

This commit is contained in:
2026-06-18 00:13:56 -04:00
parent 41c3db1e58
commit 932e087b5e
8 changed files with 253 additions and 0 deletions

16
nginx/default.conf Normal file
View File

@@ -0,0 +1,16 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
location /assets/ {
expires 30d;
add_header Cache-Control "public";
}
}