speeches organized
Some checks are pending
/ deploy (push) Waiting to run

This commit is contained in:
Loyyd 2026-06-10 21:07:01 +02:00
parent 9c937f6c58
commit 9fee73fd96
970 changed files with 3223 additions and 3638 deletions

View file

@ -0,0 +1,16 @@
server {
listen 80;
listen [::]:80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location ~ /\. {
return 404;
}
location / {
try_files $uri $uri/ =404;
}
}