I am thinking it may be something in the sites nginx config that needs to be added.
If I move the files from /administrator/templates/isis and put them into /templates/isis everything works perfectly (or seems to have not set up much else due to this issue).
my nginx config for this site. any ideas how to fix this would be greatly appreciated.
Code: Select all
server {
listen 127.0.0.1:80;
server_name rvpark.test;
root "c:/winnmp/www/rvpark"; # automatically modified on each restart! can be manually set by replacing this comment
allow 127.0.0.1;
deny all;
autoindex on;
location ~ \.php$ {
try_files $uri =404;
include nginx.fastcgi.conf;
include nginx.redis.conf;
fastcgi_pass php_farm;
fastcgi_hide_header X-Powered-By;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~* /(images|cache|media|logs|tmp)/.*\.(php|pl|py|jsp|asp|sh|cgi)$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
return 403;
error_page 403 /403_error.html;
}
}