| Server IP : 46.29.167.47 / Your IP : 216.73.217.69 Web Server : nginx/1.24.0 System : Linux r1113901 6.8.0-117-generic #117-Ubuntu SMP PREEMPT_DYNAMIC Tue May 5 19:26:24 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /etc/nginx/sites-enabled/ |
Upload File : |
server {
listen 80;
server_name w3poker.ru www.w3poker.ru;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name w3poker.ru www.w3poker.ru;
root /var/www/w3poker.ru;
index index.php;
ssl_certificate /etc/letsencrypt/live/w3poker.ru/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/w3poker.ru/privkey.pem;
location / { try_files $uri $uri/ /index.php?$args; }
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass unix:/run/php/php8.3-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}