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 : mangacherri.com.conf
# --- Redirect HTTP to HTTPS cleanly --- server { listen 80; server_name mangacherri.com www.mangacherri.com; return 301 https://$host$request_uri; } # --- Main HTTPS Server Block --- server { listen 443 ssl http2; server_name mangacherri.com www.mangacherri.com; root /var/www/html/mangacherri/public_html; index index.php index.html; client_max_body_size 100M; ssl_certificate /etc/letsencrypt/live/mangacherri.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/mangacherri.com/privkey.pem; include /etc/letsencrypt/options-ssl-nginx.conf; ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # Main app access location / { try_files $uri $uri/ $uri.php @clean_urls; } # Clean URLs rewriting location @clean_urls { 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; rewrite ^(.*)$ /index.php?$query_string 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; #add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0"; #add_header Pragma "no-cache"; #expires off; } # Static files (images, css, js) caching location ~* \.(?:jpg|jpeg|png|gif|webp|css|js)$ { #expires 30d; #add_header Cache-Control "public"; access_log off; expires off; add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0"; add_header Pragma "no-cache"; } # 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