| Server IP : 62.171.151.215 / Your IP : 216.73.217.53 Web Server : nginx/1.18.0 System : Linux vmi3128365 5.15.0-176-generic #186-Ubuntu SMP Fri Mar 13 11:01:42 UTC 2026 x86_64 User : alex ( 1000) PHP Version : 8.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /etc/nginx/sites-available/ |
Upload File : |
server {
listen 80;
server_name camarchecafonctionne.com www.camarchecafonctionne.com;
return 301 https://www.camarchecafonctionne.com$request_uri;
}
server {
listen 443 ssl;
server_name camarchecafonctionne.com;
ssl_certificate /etc/letsencrypt/live/camarchecafonctionne.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/camarchecafonctionne.com/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
return 301 https://www.camarchecafonctionne.com$request_uri;
}
server {
listen 443 ssl;
server_name www.camarchecafonctionne.com;
root /var/www/camarchecafonctionne.com;
index index.php index.html;
client_max_body_size 128M;
ssl_certificate /etc/letsencrypt/live/camarchecafonctionne.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/camarchecafonctionne.com/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
include snippets/perf.conf;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php8.4-fpm.sock;
fastcgi_read_timeout 300;
}
location ~ /\.ht {
deny all;
}
}