SectionEighty
Member
Alright, so I followed this thread and tried the suggestions, but no luck.
Added this to nginx.conf
And uncommented the "RewriteBase /xenforo" in the .htaccess file.
Still get a Page Not Found.
Confused as to what to try next. Is the format for my paths in my conf file wrong?
Added this to nginx.conf
Code:
location /home/nginx/domains/sectioneighty.com/public/forum/ {
try_files $uri $uri/ /home/nginx/domains/sectioneighty.com/public/forum/index.php?$uri&$args;
index index.php index.html;
}
location /home/nginx/domains/sectioneighty.com/public/forum/internal_data/ {
internal;
}
location /home/nginx/domains/sectioneighty.com/public/forum/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;
}
And uncommented the "RewriteBase /xenforo" in the .htaccess file.
Still get a Page Not Found.
Confused as to what to try next. Is the format for my paths in my conf file wrong?