June 10, 2010 09:30AM
On Thu, Jun 10, 2010 at 8:09 PM, Axel <junk@devignon.fr> wrote:
> Igor,
>
> I'm trying to follow your advise but look:
>
>
>        # ROUTING TO KOHANA IF REQUIRED
>        location / {
>                try_files $uri $uri/ @kohana;
>        }
>
>        # HANDLES THE REWRITTEN URLS TO KOHANA CONTROLLER
>        location @kohana
>        {
>                fastcgi_pass 127.0.0.1:9000;
>                fastcgi_index index.php;
>                include fastcgi_params;
>                include hom_params;
>                fastcgi_param SCRIPT_FILENAME $document_root/index.php;
>        }
>
>        # FOR PHP FILES NOT HANDLED BY KOHANA
>        location ~* \.php$ {
>                fastcgi_pass 127.0.0.1:9000;
>                fastcgi_index index.php;
>                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
>                include fastcgi_params;
>                include hom_params;
>        }
>
>
> Nearly everything works at this stage EXCEPT:
>
> when I browse an URL like "http://www.xxxx.com/share.php", this file (share.php) does not exist in the document root therefore this URL should be handled by @kohana.
> As an answer, I get a "No input file specified". I'm pretty sure the .php location is taking over @kohana. I tried to add a break in @kohana but no success.
>
> Do you see what I mean?
>

add

try_files $uri @kohana;

to the location ~* \.php$ { } block
--
O< ascii ribbon campaign - stop html mail - www.asciiribbon.org

_______________________________________________
nginx mailing list
nginx@nginx.org
http://nginx.org/mailman/listinfo/nginx
Subject Author Posted

Static files download

Axel June 09, 2010 10:44AM

Re: Static files download

Igor Sysoev June 09, 2010 10:46AM

Re: Static files download

Axel June 09, 2010 10:52AM

Re: Static files download

Igor Sysoev June 09, 2010 11:02AM

Re: Static files download

Axel June 09, 2010 11:40AM

Re: Static files download

Axel June 09, 2010 02:10PM

Re: Static files download

Igor Sysoev June 09, 2010 02:16PM

Re: Static files download

Grzegorz Sienko June 09, 2010 06:10PM

Re: Static files download

Axel June 10, 2010 04:18AM

Re: Static files download

Igor Sysoev June 10, 2010 04:22AM

Re: Static files download

Axel June 10, 2010 04:42AM

Re: Static files download

Axel June 10, 2010 06:28AM

Re: Static files download

Igor Sysoev June 10, 2010 08:20AM

Re: Static files download

Axel June 10, 2010 09:14AM

Re: Static files download

Igor Sysoev June 10, 2010 09:28AM

Re: Static files download

edogawaconan June 10, 2010 09:30AM

Re: Static files download

Axel June 10, 2010 10:00AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 171
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready