Im having a hard time trying to get cherokee to "see" my non-php files

whenever y go to mysite.com/something.txt  cherokee throws 404 error eventhough the file is actually there

here is my conf

Directory / {
  Handler file
}

Request "^/([^\?]*)(\?(.*))?$" {
        Handler redir {
                Rewrite "/index.php?q=$1&$3&"
        }
}

....
More requests handlers.
....
Request "(\.(inc|module|pl|sh|sql|theme|engine|xtmpl)|Entries|Repositories|Root|scripts|updates)$" {
        Allow from localhost
}

Directory /modules { Handler file }
Directory /images  { Handler file }
Directory /files   { Handler file }
Directory /themes  { Handler file }
Directory /local   { Handler file }
Directory /misc    { Handler file }
Directory /img    { Handler file }

Directory /about {
        Handler server_info {
        JustAbout
        }
}
Extension php {
        handler fcgi {
                server localhost:8000 {
                        Env PHP_FCGI_MAX_REQUESTS "-1"
                        Env PHP_FCGI_CHILDREN     "20"
                        Interpreter "/usr/lib/cgi-bin/php4 -b 127.0.0.1:8000"
                        #Interpreter "/usr/bin/php5-cgi -b 127.0.0.1:8001"
                }
        }
}


any ideas???

thanx
jordi
_______________________________________________
Cherokee mailing list
Cherokee@0x50.org
http://www.0x50.org/cgi-bin/mailman/listinfo/cherokee

Reply via email to