HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //etc/nginx/sites-available/upgrade-iq-v2
server {
    server_name upgrade-iq-v2.foach.site int.upgrade-iq-v2.foach.site;
    root /var/www/landings/landings/iq-option-v2/build;

    gzip on;
    gzip_disable "msie6";
    gzip_vary on;
    gzip_proxied any;
    gzip_comp_level 6;
    gzip_buffers 16 8k;
    gzip_http_version 1.1;
    gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript;

    location ~* \.(jpg|jpeg|png|gif|ico|css|js|woff|woff2|ttf|svg|eot|webp)$ {
      expires 1y;
      add_header Cache-Control "public, max-age=31536000" always;
    }

    location / {
      root /var/www/landings/landings/iq-option-v2/build;
      auth_basic "Unauthorized";
      auth_basic_user_file /var/www/.htpasswd;
      rewrite ^/lp/affiliate(.*)$ /$1 last;
      try_files $uri $uri/ /index.html;
    }

    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/upgrade-iq-v2.foach.site/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/upgrade-iq-v2.foach.site/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot






}
server {
    if ($host = upgrade-iq-v2.foach.site) {
        return 301 https://$host$request_uri;
    } # managed by Certbot

    if ($host = int.upgrade-iq-v2.foach.site) {
        return 301 https://$host$request_uri;
    } # managed by Certbot

    server_name upgrade-iq-v2.foach.site int.upgrade-iq-v2.foach.site;

    listen 80;
    return 404; # managed by Certbot


}