| Server IP : 54.37.205.81 / Your IP : 216.73.216.76 Web Server : nginx/1.22.1 System : Linux vps-249481fa 6.1.0-50-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.176-1 (2026-07-02) x86_64 User : debian ( 1000) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /etc/nginx/sites-available/ |
Upload File : |
server {
server_name cameramodaitalia.it www.cameramodaitalia.it;
root /var/www/cameramodaitalia.it/public;
index index.php index.html index.htm;
client_max_body_size 128M;
access_log /var/log/nginx/cameramodaitalia.it.access.log;
error_log /var/log/nginx/cameramodaitalia.it.error.log;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php8.2-fpm.sock;
}
location ~* /(?:uploads|files)/.*\.php$ {
deny all;
}
location ~ /\. {
deny all;
}
listen [::]:443 ssl ipv6only=on; # managed by Certbot
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/cameramodaitalia.it/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/cameramodaitalia.it/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 = www.cameramodaitalia.it) {
return 301 https://$host$request_uri;
} # managed by Certbot
if ($host = cameramodaitalia.it) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80;
listen [::]:80;
server_name cameramodaitalia.it www.cameramodaitalia.it;
return 404; # managed by Certbot
}