| Server IP : 51.79.230.26 / Your IP : 216.73.217.128 Web Server : LiteSpeed System : Linux sg2.exonhost.com 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : mukutpub ( 1151) PHP Version : 8.2.33 Disable Function : eval, show_source, system, shell_exec, passthru, exec, popen, proc_open, allow_url_fopen, symlink, mail MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /opt/cpguard/cpg-nginx/conf/captcha/ |
Upload File : |
server {
server_name trustpackagingbd.com mail.trustpackagingbd.com www.trustpackagingbd.com autoconfig.trustpackagingbd.com cpanel.trustpackagingbd.com webdisk.trustpackagingbd.com cpcalendars.trustpackagingbd.com cpcontacts.trustpackagingbd.com webmail.trustpackagingbd.com autodiscover.trustpackagingbd.com;
listen 9096;
listen [::]:9096;
root /opt/cpguard/app/api/public/captcha;
access_log off;
etag off;
keepalive_timeout 0;
# Absolute no-cache on captcha
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0" always;
add_header Pragma "no-cache" always;
add_header Expires "0" always;
location / {
return 301 https://$host$request_uri;
}
}
server {
server_name trustpackagingbd.com mail.trustpackagingbd.com www.trustpackagingbd.com autoconfig.trustpackagingbd.com cpanel.trustpackagingbd.com webdisk.trustpackagingbd.com cpcalendars.trustpackagingbd.com cpcontacts.trustpackagingbd.com webmail.trustpackagingbd.com autodiscover.trustpackagingbd.com;
listen 9097 ssl;
listen [::]:9097 ssl;
ssl_certificate /opt/cpguard/cpg-nginx/ssl/domains/trustpackagingbd.com.pem;
ssl_certificate_key /opt/cpguard/cpg-nginx/ssl/domains/trustpackagingbd.com.pem;
root /opt/cpguard/app/api/public/captcha;
access_log off;
etag off;
keepalive_timeout 0;
# Absolute no-cache on captcha
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0" always;
add_header Pragma "no-cache" always;
add_header Expires "0" always;
location = /altcha.php {
include /opt/cpguard/cpg-nginx/conf/fastcgi_params;
fastcgi_pass unix:/opt/cpguard/cpg-php-fpm/var/run/cpgphp-cgi.sock;
fastcgi_index altcha.php;
fastcgi_param SCRIPT_FILENAME $document_root/altcha.php;
}
# This saves bandwidth. Nginx simply hangs up on them.
location ~* \.(jpg|jpeg|gif|png|bmp|webp|ico|svg|tiff|css|js|woff|woff2|ttf|eot|map|json|pdf|doc|docx|xls|xlsx|ppt|pptx|txt|rtf|zip|rar|7z|tar|gz|bz2|iso|mp3|mp4|avi|mov|mpeg|flv|wav|ogg)$ {
return 444;
}
location / {
rewrite ^ /https.html break;
}
}