Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
lib /
letsencrypt /
backups /
1765549066.169399 /
Delete
Unzip
Name
Size
Permission
Date
Action
CHANGES_SINCE
517
B
-rw-r--r--
2025-12-12 14:17
FILEPATHS
644
B
-rw-r--r--
2025-12-12 14:17
ai-endpoint_6
176
B
-rw-r--r--
2023-12-21 05:37
ai_proxy_3
333
B
-rw-r--r--
2024-05-24 18:53
api.altinfiyatlari.softmedya.net_12
990
B
-rw-r--r--
2025-04-19 09:57
api.betsfootball.net_0
2.07
KB
-rw-r--r--
2025-10-11 19:41
api.goldprices.softmedya.net_9
919
B
-rw-r--r--
2025-02-26 15:02
apicore.betsfootball.net_1
1.55
KB
-rw-r--r--
2025-04-15 15:17
betsfootball.net_13
1.56
KB
-rw-r--r--
2025-05-31 10:05
default_2
4.19
KB
-rw-r--r--
2025-04-19 09:32
mime.types_11
5.22
KB
-rw-r--r--
2022-05-23 23:59
nginx.conf_10
791
B
-rw-r--r--
2025-10-09 11:41
options-ssl-nginx.conf_4
774
B
-rw-r--r--
2025-04-09 05:46
softmedya.com.tr_5
1.44
KB
-rw-r--r--
2025-04-19 07:37
softmedya.net_14
2.61
KB
-rw-r--r--
2025-11-29 14:30
turkish-bazaar.ru_8
280
B
-rw-r--r--
2025-09-13 10:11
whatssapp-endpoint.softmedya.net_7
1.13
KB
-rw-r--r--
2025-04-22 08:37
Save
Rename
# Redirect HTTP → HTTPS server { listen 80; server_name api.betsfootball.net; return 301 https://$host$request_uri; } # Reverse proxy for the API server { listen 443 ssl http2; server_name api.betsfootball.net; # ssl_certificate ...; ssl_certificate /etc/letsencrypt/live/api.betsfootball.net/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/api.betsfootball.net/privkey.pem; # managed by Certbot # Good logging while debugging access_log /var/log/nginx/api_access.log combined; error_log /var/log/nginx/api_error.log notice; # If you only serve the API on this host: location / { # IMPORTANT: no trailing slash here if your upstream expects the full URI. # This preserves BOTH the path and the query string as-is: # /fixtures?date=2025-10-11 → http://127.0.0.1:8000/fixtures?date=2025-10-11 proxy_pass http://127.0.0.1:23791; # 2) Stream instead of buffering (best for APIs w/ big JSON) proxy_buffering off; # disable response buffering proxy_request_buffering off; # disable request buffering (if large request bodies ever happen) # Preserve request context so your app generates correct absolute URLs and avoids HTTPS redirect loops 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; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Port $server_port; # Don’t let upstream rewrite Location headers to its internal host proxy_redirect off; # Reasonable timeouts for APIs proxy_connect_timeout 5s; proxy_send_timeout 30s; proxy_read_timeout 30s; } # (Optional) Basic CORS for browser clients. Remove if you don’t need it. add_header Access-Control-Allow-Origin "*" always; add_header Access-Control-Allow-Methods "GET, POST, OPTIONS" always; add_header Access-Control-Allow-Headers "Authorization, Content-Type" always; if ($request_method = OPTIONS) { return 204; } }