Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
etc /
nginx /
conf.d /
[ HOME SHELL ]
Name
Size
Permission
Action
berripix.com.conf
3.3
KB
-rw-rw-r--
legendbo.com.conf
2.17
KB
-rw-rw-r--
mangaberri.com.conf
3.29
KB
-rw-rw-r--
mangacherri.com.conf
2.03
KB
-rw-rw-r--
pwnkit
0
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mangaberri.com.conf
# --- Redirect HTTP to HTTPS cleanly --- server { listen 80; server_name mangaberri.com www.mangaberri.com; return 301 https://$host$request_uri; } # --- Main HTTPS Server Block --- server { listen 443 ssl http2; server_name mangaberri.com www.mangaberri.com; root /var/www/html/mangaberri/public_html; index index.php index.html; client_max_body_size 100M; ssl_certificate /etc/letsencrypt/live/mangaberri.com-0001/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/mangaberri.com-0001/privkey.pem; include /etc/letsencrypt/options-ssl-nginx.conf; ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # Main site access location / { try_files $uri $uri/ @clean_urls; } location @clean_urls { # 1) Your existing routes first rewrite ^/genre/([^/]+)$ /genre.php?genre=$1 last; rewrite ^/([A-Za-z0-9_-]+)/([0-9]+)$ /reading.php?title=$1&chapter=$2 last; rewrite ^/([A-Za-z0-9_-]+)$ /read-manga.php?title=$1 last; # 2) Pretty URL -> same-name php, ONLY if file exists if (-f $document_root$uri.php) { rewrite ^ $uri.php last; } # 3) Fallback rewrite ^ /index.php?$args last; } # PHP files handling location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php8.3-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param HTTPS on; include fastcgi_params; fastcgi_read_timeout 60s; set $skip_cache 0; if ($request_method = POST) { set $skip_cache 1; } if ($query_string != "") { set $skip_cache 1; } if ($http_cookie ~* "PHPSESSID|wordpress_logged_in_|comment_author") { set $skip_cache 1; } if ($request_uri ~* "/(admin|login|dashboard|user)") { set $skip_cache 1; } fastcgi_cache_bypass $skip_cache; fastcgi_no_cache $skip_cache; #fastcgi_cache phpcache; #fastcgi_cache_valid 200 302 10m; #fastcgi_cache_valid 404 1m; #add_header X-FastCGI-Cache $upstream_cache_status always; add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0"; add_header Pragma "no-cache"; expires off; } location /mangas/ { add_header 'Access-Control-Allow-Origin' '*'; } # Static file handling - IMAGES location ~* \.(?:jpg|jpeg|png|gif|webp|svg)$ { access_log off; #expires 30d; #add_header Cache-Control "public, max-age=2592000, immutable"; expires off; add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0"; add_header Pragma "no-cache"; try_files $uri =404; } # Other static files (CSS, JS) location ~* \.(?:css|js)$ { access_log off; expires 30d; #add_header Cache-Control "public, max-age=2592000, immutable"; add_header Cache-Control "public, max-age=2592000"; try_files $uri =404; } # Block access to hidden files like .htaccess location ~ /\.(?!well-known).* { deny all; } # Custom 404 page error_page 404 = @custom_404; location @custom_404 { rewrite ^ /404.php; } }
Close