Fix: Solucionados problemas de permisos en Docker y agregada gestion de Webhook de Telegram

This commit is contained in:
2026-04-19 19:23:25 -06:00
parent 249c997257
commit c4bd4b62e3
13 changed files with 615 additions and 98 deletions

View File

@@ -1,6 +1,6 @@
server {
listen 80;
server_name localhost;
server_name _;
root /var/www/html/public;
index index.php index.html;
@@ -24,7 +24,7 @@ server {
}
location ~ \.php$ {
fastcgi_pass app:9000;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;