Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
lib
/
letsencrypt
/
backups
/
1762934278.5500982
/
Filename :
crm-frontend-production.conf_0
back
Copy
# HTTP -> HTTPS redirect <VirtualHost *:80> ServerName prod.crm.abasa.com RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [L,R=301] RewriteCond %{SERVER_NAME} =prod.crm.abasa.com RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] </VirtualHost> # HTTPS VirtualHost (Reverse Proxy to Next.js) <VirtualHost *:443> ServerName prod.crm.abasa.com ProxyPreserveHost On ProxyPass / http://localhost:4007/ ProxyPassReverse / http://localhost:4007/ # WebSocket support for Next.js hot reload RewriteEngine On RewriteCond %{HTTP:Upgrade} =websocket [NC] RewriteRule /(.*) ws://localhost:4007/$1 [P,L] SSLEngine on Include /etc/letsencrypt/options-ssl-apache.conf ErrorLog ${APACHE_LOG_DIR}/crm-frontend-production-error.log CustomLog ${APACHE_LOG_DIR}/crm-frontend-production-access.log combined SSLCertificateFile /etc/letsencrypt/live/prod.crm.abasa.com/fullchain.pem SSLCertificateKeyFile /etc/letsencrypt/live/prod.crm.abasa.com/privkey.pem </VirtualHost>