Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cqt /
[ HOME SHELL ]
Name
Size
Permission
Action
dist
[ DIR ]
drwxr-xr-x
node_modules
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
server
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
.env
41
B
-rw-r--r--
.env.example
285
B
-rw-r--r--
README.md
2.09
KB
-rw-r--r--
apache-config.conf
2.78
KB
-rw-r--r--
bun.lockb
196.41
KB
-rw-r--r--
components.json
414
B
-rw-r--r--
deploy.sh
4.87
KB
-rw-r--r--
eslint.config.js
765
B
-rw-r--r--
index.html
1.05
KB
-rw-r--r--
package-lock.json
236.95
KB
-rw-r--r--
package.json
2.69
KB
-rw-r--r--
postcss.config.js
81
B
-rw-r--r--
setup-server.sh
7.51
KB
-rw-r--r--
tailwind.config.ts
3.81
KB
-rw-r--r--
tsconfig.app.json
652
B
-rw-r--r--
tsconfig.json
369
B
-rw-r--r--
tsconfig.node.json
481
B
-rw-r--r--
utils.ts
169
B
-rw-r--r--
vite.config.ts
454
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : apache-config.conf
# Apache Configuration for CQT Website # File: /etc/apache2/sites-available/cqt.conf <VirtualHost *:80> # Domain Configuration ServerName YOUR_DOMAIN_HERE ServerAlias www.YOUR_DOMAIN_HERE ServerAdmin admin@YOUR_DOMAIN_HERE # Document Root - React Frontend DocumentRoot /var/www/html/cqt/dist # Frontend Directory Configuration <Directory /var/www/html/cqt/dist> Options -Indexes +FollowSymLinks AllowOverride All Require all granted # Enable URL Rewriting for React Router RewriteEngine On RewriteBase / # Don't rewrite files or directories RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Rewrite everything else to index.html RewriteRule ^ index.html [L] </Directory> # API Proxy to Node.js Backend # Forward all /api requests to Node.js server on port 5000 ProxyPreserveHost On ProxyPass /api http://localhost:5000/api ProxyPassReverse /api http://localhost:5000/api # Set timeout for long-running requests ProxyTimeout 300 # Logs ErrorLog ${APACHE_LOG_DIR}/cqt-error.log CustomLog ${APACHE_LOG_DIR}/cqt-access.log combined LogLevel warn # Security Headers (optional but recommended) <IfModule mod_headers.c> Header always set X-Content-Type-Options "nosniff" Header always set X-Frame-Options "SAMEORIGIN" Header always set X-XSS-Protection "1; mode=block" </IfModule> # Compression (optional but recommended) <IfModule mod_deflate.c> AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/json </IfModule> </VirtualHost> # Uncomment below for HTTPS (after getting SSL certificate) #<VirtualHost *:443> # ServerName YOUR_DOMAIN_HERE # ServerAlias www.YOUR_DOMAIN_HERE # ServerAdmin admin@YOUR_DOMAIN_HERE # # DocumentRoot /var/www/html/cqt/dist # # <Directory /var/www/html/cqt/dist> # Options -Indexes +FollowSymLinks # AllowOverride All # Require all granted # # RewriteEngine On # RewriteBase / # RewriteCond %{REQUEST_FILENAME} !-f # RewriteCond %{REQUEST_FILENAME} !-d # RewriteRule ^ index.html [L] # </Directory> # # ProxyPreserveHost On # ProxyPass /api http://localhost:5000/api # ProxyPassReverse /api http://localhost:5000/api # ProxyTimeout 300 # # # SSL Configuration # SSLEngine on # SSLCertificateFile /etc/ssl/certs/YOUR_DOMAIN.crt # SSLCertificateKeyFile /etc/ssl/private/YOUR_DOMAIN.key # SSLCertificateChainFile /etc/ssl/certs/YOUR_DOMAIN_chain.crt # # ErrorLog ${APACHE_LOG_DIR}/cqt-ssl-error.log # CustomLog ${APACHE_LOG_DIR}/cqt-ssl-access.log combined #</VirtualHost>
Close