Welcome! Log In Create A New Profile

Advanced

Re: serve precompressed files without also serving their uncompressed counterparts

Valentin V. Bartenev
December 22, 2015 11:16AM
On Tuesday 22 December 2015 19:05:18 Valentin V. Bartenev wrote:
> On Tuesday 22 December 2015 11:01:19 snieuwen wrote:
> > Hi,
> >
> > Is it possible to serve precompressed files without serving their
> > uncompressed counterparts?
> >
> > For example:
> > /var/www/ contains index.html.gz, but no index.html. How do I configure
> > nginx to respond with index.html.gz when the client supports gzip or let
> > nginx decompress the file on the fly when the client does not support gzip?
> >
> > Based on this answer on stackoverflow http://serverfault.com/a/611757, I am
> > currently using the following configuration:
> >
> > location / {
> > try_files $uri $uri/ @application;
> > root /var/www;
> > gzip_static on;
> > gunzip on;
> > }
> >
> > @application configures the application server.
> > When I try get the index.html page, nginx return a 403 forbidden error.
> >
> [..]
>
> gzip_static always;
>
> See the documentation: nginx.org/r/gzip_static
>
[..]

But your problem is caused by "try_files", since you have configured
it to check "$uri" and "$uri/" instead of "$uri.gz".

The configuration below should work for you:

location / {
root /var/www;

gzip_static always;
gunzip on;

error_page 404 = @application;
}


wbr, Valentin V. Bartenev

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

serve precompressed files without also serving their uncompressed counterparts

snieuwen December 22, 2015 11:01AM

Re: serve precompressed files without also serving their uncompressed counterparts

Valentin V. Bartenev December 22, 2015 11:06AM

Re: serve precompressed files without also serving their uncompressed counterparts

Valentin V. Bartenev December 22, 2015 11:16AM

Re: serve precompressed files without also serving their uncompressed counterparts

Maxim Dounin December 22, 2015 11:26AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

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