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 /
[ HOME SHELL ]
Name
Size
Permission
Action
conf.d
[ DIR ]
drwxrwxrwx
modules-available
[ DIR ]
drwxr-xr-x
modules-enabled
[ DIR ]
drwxr-xr-x
sites-available
[ DIR ]
drwxrwxrwx
sites-enabled
[ DIR ]
drwxr-xr-x
snippets
[ DIR ]
drwxr-xr-x
fastcgi.conf
1.1
KB
-rw-r--r--
fastcgi_params
1.03
KB
-rw-r--r--
koi-utf
2.77
KB
-rw-r--r--
koi-win
2.17
KB
-rw-r--r--
mime.types
5.34
KB
-rw-r--r--
nginx.conf
2.02
KB
-rwxrwxrwx
nginx_ori.conf
1.41
KB
-rwxr-xr-x
proxy_params
180
B
-rw-r--r--
scgi_params
636
B
-rw-r--r--
site-enabled
2.35
KB
-rw-rw-r--
uwsgi_params
664
B
-rw-r--r--
win-utf
3
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : site-enabled
# --- Redirect HTTP -> HTTPS (single hop, both hosts) --- server { listen 80; listen [::]:80; server_name legendbo.com www.legendbo.com; return 301 https://legendbo.com$request_uri; # pick canonical host if you want non-www } # --- Main HTTPS Server Block --- server { listen 443 ssl http2; listen [::]:443 ssl http2; server_name legendbo.com www.legendbo.com; root /var/www/html/mangalegend/public_html; index index.php index.html; client_max_body_size 100M; # --------- ROUTING ---------- # Try static file/dir, then fallback to PHP front controller OR your custom rewrites location / { try_files $uri $uri/ @clean_urls; } # Your clean URL rules location @clean_urls { # explicit patterns 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; # final fallback to index.php with query string preserved rewrite ^ /index.php?$query_string last; } # --------- PHP HANDLER ---------- location ~ \.php$ { include snippets/fastcgi-php.conf; # includes: try_files $fastcgi_script_name =404; fastcgi_pass unix:/run/php/php8.3-fpm.sock; # (snippets/fastcgi-php.conf already sets SCRIPT_FILENAME correctly) fastcgi_param HTTPS on; } # --------- STATIC CACHING ---------- location ~* \.(?:jpg|jpeg|png|gif|webp|css|js)$ { access_log off; # If you really want no-cache for now, keep these: expires off; add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0"; add_header Pragma "no-cache"; } # Block hidden files (except .well-known for ACME) location ~ /\.(?!well-known) { deny all; } # --------- PROPER 404 HANDLER ---------- # Send 404s to /404.php and execute it as PHP. error_page 404 /404.php; # ensure 404.php runs via PHP-FPM and cannot be requested directly from outside logic if you prefer internal location = /404.php { # optional: internal; # uncomment to prevent direct external requests include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php8.3-fpm.sock; fastcgi_param HTTPS on; } }
Close