Marcus
Well-known member
I can enter domain.com and receive the xenForo start page (I got the PLESK star page instead until I removed index.html from my root). However Friendly URLs are not working.
PHP:
location / {
try_files $uri $uri/ /index.php?$uri&$args;
index index.php index.html;
}
location/internal_data/ {
internal;
}
location /library/ {
internal;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}