atom feed11 messages in ru.sysoev.nginxRe: drupal try_files php fastcgi
FromSent OnAttachments
Otto BretzMar 14, 2009 3:13 am 
Igor SysoevMar 14, 2009 8:44 am 
Otto BretzMar 16, 2009 2:03 am 
Igor SysoevMar 16, 2009 3:33 am 
mikeMar 16, 2009 9:26 am 
Cliff WellsMar 16, 2009 9:51 am 
Igor SysoevMar 16, 2009 10:12 am 
Igor SysoevMar 16, 2009 10:15 am 
Cliff WellsMar 16, 2009 10:21 am 
Mark AlanMar 16, 2009 1:42 pm 
Leon KellermannMar 16, 2009 8:24 pm 
Subject:Re: drupal try_files php fastcgi
From:Igor Sysoev (is@rambler-co.ru)
Date:Mar 14, 2009 8:44:12 am
List:ru.sysoev.nginx

On Sat, Mar 14, 2009 at 11:14:00AM +0100, Otto Bretz wrote:

Hi,

I'm having trouble getting $subject to work. I'm running 0.6.35 with the try_files patch. I tried to follow the config posted in [1]. My current config can be found at [2].

I'm also not able to get a simple phpinfo page to work, http://themansion.mine.nu/test1/. Drupal is installed in http://themansion.mine.nu/test2/

This line

2009/03/14 10:59:00 [error] 17863#0: *31 directory index of "/var/www/htdocs/tes t1/" is forbidden, client: 90.227.72.67, server: _, request: "GET /test1/ HTTP/1 .1", host: "themansion.mine.nu"

means that you have no index file in /test1/ - /test1/index.html (default index file):

location / { root /var/www/htdocs; #index index.html index.htm; try_files $uri $uri/ @drupal; }

What file should handle index of /test1/ ?