Initial commit: Hapkido Cardedeu V2 landing page

This commit is contained in:
Mambo
2026-05-01 13:49:20 +02:00
commit 4c8883022b
12 changed files with 528 additions and 0 deletions

6
nginx.conf Normal file
View File

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