Initial commit: SYNC_API project

This commit is contained in:
2025-11-06 09:50:10 -07:00
commit 733ef04eeb
42 changed files with 2380 additions and 0 deletions

18
sync_api/nginx_proxy.conf Normal file
View File

@@ -0,0 +1,18 @@
# Configuración nginx para proxy inverso
server {
listen 8000;
server_name cpanel-a24.aduanasoft.com;
location / {
proxy_pass http://104.192.7.152:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Para WebSockets si es necesario
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}