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
/
etc /
nginx /
sites-available /
Delete
Unzip
Name
Size
Permission
Date
Action
ai-endpoint
176
B
-rw-r--r--
2023-12-21 05:37
ai_proxy
333
B
-rw-r--r--
2024-05-24 18:53
api.altinfiyatlari.softmedya.net
990
B
-rw-r--r--
2025-04-19 09:57
api.betsfootball.net
2.07
KB
-rw-r--r--
2025-10-11 19:41
api.goldprices.softmedya.net
919
B
-rw-r--r--
2025-02-26 15:02
apicore.betsfootball.net
1.55
KB
-rw-r--r--
2025-04-15 15:17
betsfootball.net
1.56
KB
-rw-r--r--
2025-05-31 10:05
default
5.99
KB
-rw-r--r--
2025-12-12 14:17
softmedya.com.tr
1.44
KB
-rw-r--r--
2025-04-19 07:37
softmedya.net
2.61
KB
-rw-r--r--
2025-11-29 14:30
turkish-bazaar.ru
869
B
-rw-r--r--
2025-12-12 14:50
whatssapp-endpoint.softmedya.net
1.13
KB
-rw-r--r--
2025-04-22 08:37
Save
Rename
## # /etc/nginx/sites-available/softmedya.net.conf ## # --------------------------------------------- # HTTP: redirect everything to HTTPS # --------------------------------------------- server { listen 80; listen [::]:80; server_name softmedya.net www.softmedya.net; # If you use Let's Encrypt, keep this for HTTP-01 challenges: location /.well-known/acme-challenge/ { root /var/www/softmedya.net/public; } # Redirect all other HTTP traffic to HTTPS location / { return 301 https://$host$request_uri; } } # --------------------------------------------- # HTTPS: main site # --------------------------------------------- server { listen 443 ssl http2; listen [::]:443 ssl http2; server_name softmedya.net www.softmedya.net; # Adjust certificate paths if needed ssl_certificate /etc/letsencrypt/live/softmedya.net/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/softmedya.net/privkey.pem; # Optional: strong SSL params if you have this file # include /etc/letsencrypt/options-ssl-nginx.conf; # ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; root /var/www/softmedya.net/public; index index.php index.html index.htm; # ----------------------------------------- # Normal Laravel-style front controller # ----------------------------------------- location / { try_files $uri $uri/ /index.php?$query_string; } # ----------------------------------------- # Directory listing for /shorts/ # URL: https://softmedya.net/shorts/ # Files: /var/www/softmedya.net/public/shorts/ # ----------------------------------------- location /shorts/ { autoindex on; autoindex_exact_size off; # human-readable sizes autoindex_localtime on; # show local time for files # Map /shorts/... to this directory on disk alias /var/www/softmedya.net/public/shorts/; # Optional: allow downloading video, images, etc. # You usually don't need extra settings here. } # ----------------------------------------- # Static files: optional caching # ----------------------------------------- location ~* \.(?:css|js|jpg|jpeg|gif|png|ico|webp|svg|ttf|otf|woff|woff2|mp4|mov|avi)$ { expires 30d; add_header Cache-Control "public"; access_log off; } # ----------------------------------------- # Security / misc # ----------------------------------------- client_max_body_size 50M; # Optional: deny access to hidden files (.env, .git, etc.) location ~ /\.(?!well-known).* { deny all; } }