Initial commit

This commit is contained in:
2026-02-10 19:19:25 -03:00
commit 7bf6ea5c26
8 changed files with 523 additions and 0 deletions

10
nginx/default.conf Normal file
View File

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