Welcome! Log In Create A New Profile

Advanced

Re: Static files download

June 10, 2010 08:20AM
On Thu, Jun 10, 2010 at 12:22:04PM +0200, Axel wrote:

> thanks for your help. Actually I wrote my entire configuration file again from scratch. It works very well now: http://pastebin.com/pCL2dy9Z
> I'll post this configuration somewhere for Kohana users because it's been was a pain to get it work.

This is wrong configuration.

1) All these

set $server_type prod;
set $medias_path /var/www/xxxx/medias;
...

are not macros, but run-time directives. They will run every request.
It's much better to set them in place:

fastcgi_param SERVER_TYPE prod;
fastcgi_param MEDIAS_PATH /var/www/xxxx/medias;

2) This

if (!-e $request_filename) {
rewrite ^(.+)$ /index.php$1 last;
break;
}

is one of the worst configuration practice.
Never do this, never repeat this.

The right way is:

location / {
try_files $uri @kohana;
}

location @kohana {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
fastcgi_param DOCUMENT_URI /index.php$uri;
... other fastcgi_params
}


--
Igor Sysoev
http://sysoev.ru/en/

_______________________________________________
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: 312
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