I try to embed a wordpress instance to nginx server that also works with my already installed Rails application. I used all the same with that writing (HOWTO: Install WordPress on Nginx; no Date given) but it gives 403 error for all requests.
How could I understand the reason of that permission error. Logs does not include further information. Is it about the permission problem on fast-cgi or any running process?
This is also my current setting:
server{
listen 80;
server_name www.bla.com bla.com;
root /opt/nginx/wordpress/;
try_files $uri $uri/ /index.php;
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass localhost:53217;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}