| 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 perlesdepauline.com www.perlesdepauline.com;
root /var/www/perlesdepauline.com;
location ^~ /.well-known/acme-challenge/ {
default_type "text/plain";
allow all;
}
location / {
return 301 https://www.perlesdepauline.com$request_uri;
}
}
server {
listen 443 ssl http2;
server_name perlesdepauline.com;
ssl_certificate /etc/letsencrypt/live/perlesdepauline.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/perlesdepauline.com/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
return 301 https://www.perlesdepauline.com$request_uri;
}
server {
listen 443 ssl http2;
server_name www.perlesdepauline.com;
client_max_body_size 128M;
root /var/www/perlesdepauline.com;
index index.php index.html;
ssl_certificate /etc/letsencrypt/live/perlesdepauline.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/perlesdepauline.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;
}
}