Welcome! Log In Create A New Profile

Advanced

Hotlink Protection Problem

June 09, 2009 03:49AM
I was trying to prevent hotlinking for http://mydomain.com/photos/

then I use the following in nginx.conf

location ~ /photos/ {
valid_referers none blocked server_names;
if ($invalid_referer) {
return 403;
}
}

I found that it will block hotlinking from other sites and return 403. However, it will return 404 when the referer is mydomain.com

After testing for quite some time, I found that the following will work

location ~ /upload/ {
root /home/domainuser/domains/mydomin.com/public_html;
valid_referers none blocked server_names;
if ($invalid_referer) {
return 403; }
}

It only works when I add root to it. Yet, most tutorial does not state that. Is it a buy on nginx 0.7.59 or I have set something wrong in the nginx.conf so that I have to add the root?
Subject Author Posted

Hotlink Protection Problem

jerleung June 09, 2009 03:49AM

Re: Hotlink Protection Problem

Maxim Dounin June 09, 2009 04:24AM

Re: Hotlink Protection Problem

jerleung June 09, 2009 08:33AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

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