build stuff

This commit is contained in:
2026-02-20 16:19:18 +01:00
parent 24b84a73e7
commit fe756295df
4 changed files with 34 additions and 2 deletions

11
nginx.conf Normal file
View File

@@ -0,0 +1,11 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}