Welcome! Log In Create A New Profile

Advanced

Re: Setting expires header results in 404 ?

Maxim Dounin
April 02, 2010 07:02PM
Hello!

On Fri, Apr 02, 2010 at 06:45:25PM -0400, RoastedPeanut wrote:

> location ~* \.(ico|css|js|gif|jpg|png)$ {
> expires 7d;
> }
> If I add this to my server conf it will cause all those requests
> to fail with a 404..I'm feeling silly for missing this, and I
> know it's probably very easy to fix...but how? :)

Most likely you have something like this:

root /path/to/nowhere;

location / {
root /path/to/root;
}

Adding

location ~* \.(ico|css|js|gif|jpg|png)$ {
expires 7d;
}

results in these files being searched in nowhere. The reason is
simple: nginx uses configuration in "location ~* \.(...)$" which
has no root explicitly set, and therefore root is inherited from
server/http level (or compiled-in default).

Maxim Dounin

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

Setting expires header results in 404 ?

RoastedPeanut April 02, 2010 06:45PM

Re: Setting expires header results in 404 ?

Maxim Dounin April 02, 2010 07:02PM

Re: Setting expires header results in 404 ?

RoastedPeanut April 03, 2010 03:25AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 288
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