Migrar de novo para gitea 🙏

This commit is contained in:
2025-12-25 04:35:39 -03:00
parent 9d45b0adde
commit 6eab2ae945
237 changed files with 18444 additions and 0 deletions

16
nginx/developerbedoya.net Normal file
View File

@@ -0,0 +1,16 @@
server {
server_name developerbedoya.net www.developerbedoya.net;
root /var/www/developerbedoya.net;
index index.html;
location / {
try_files $uri $uri/ =404;
}
location ~/\.ht {
deny all;
}
listen 80;
}