Welcome! Log In Create A New Profile

Advanced

Re: satisfy all

November 16, 2009 02:40PM
On Mon, Nov 16, 2009 at 12:43:58PM -0600, Rob G. wrote:

> How do we make this work with nginx? I'm mostly just not sure about the
> satisfy all part. Also, do you think that would deny access to things like
> google site maps?
>
>
>
> <Files ~ "\.xml$">
>
> Order allow,deny
>
> Deny from all
>
> Satisfy all
>
> </Files>

The first location in server section:

location ~ \.xml$ {
deny all;
satisfy all; # default
}

or

location ~ \.xml$ {
return 403;
}


--
Igor Sysoev
http://sysoev.ru/en/
Subject Author Posted

satisfy all

Rob G. November 16, 2009 02:08PM

Re: satisfy all

Igor Sysoev November 16, 2009 02:40PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

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