Commit inicial - upload de todos os arquivos da pasta

This commit is contained in:
2025-07-10 14:44:56 -03:00
commit 32d86d501c
94 changed files with 14452 additions and 0 deletions

14
default.conf Normal file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
access_log off;
error_log /var/log/nginx/error.log warn;
}