|
Server IP : 62.171.151.215 / Your IP : 216.73.217.19 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 Directory (1777) : /mnt/../../tmp/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
server {
listen 80;
server_name learnfrenchiseasy.com www.learnfrenchiseasy.com;
root /var/www/learnfrenchiseasy.com;
location = /ads.txt {
default_type text/plain;
add_header Cache-Control "no-cache, must-revalidate";
try_files /ads.txt =404;
}
location / {
return 301 https://www.learnfrenchiseasy.com$request_uri;
}
}
server {
listen 443 ssl;
server_name learnfrenchiseasy.com;
root /var/www/learnfrenchiseasy.com;
ssl_certificate /etc/letsencrypt/live/learnfrenchiseasy.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/learnfrenchiseasy.com/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
location = /ads.txt {
default_type text/plain;
add_header Cache-Control "no-cache, must-revalidate";
try_files /ads.txt =404;
}
location / {
return 301 https://www.learnfrenchiseasy.com$request_uri;
}
}
server {
listen 443 ssl;
server_name www.learnfrenchiseasy.com;
root /var/www/learnfrenchiseasy.com;
index index.php index.html;
client_max_body_size 128M;
ssl_certificate /etc/letsencrypt/live/learnfrenchiseasy.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/learnfrenchiseasy.com/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
include snippets/perf.conf;
location = /ads.txt {
default_type text/plain;
add_header Cache-Control "no-cache, must-revalidate";
try_files /ads.txt =404;
}
location ^~ /private-plugin-zips/ {
auth_basic "Private plugin downloads";
auth_basic_user_file /etc/nginx/.htpasswd-learnfrench-plugins;
alias /var/www/learnfrenchiseasy.com/private-plugin-zips/;
autoindex on;
types {
application/zip zip;
text/plain txt;
}
default_type application/octet-stream;
}
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;
}
}