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
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
On Mon, Nov 16, 2009 at 12:43:58PM -0600, Rob G. wrote:
Deny from all
Satisfy all
The first location in server section:
location ~ \.xml$ {
deny all;
satisfy all; # default
}
or
location ~ \.xml$ {
return 403;
}
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs