Welcome! Log In Create A New Profile

Advanced

Re: how to forbidden other site stealing my forum attachment ?

Edho Arief
June 20, 2016 01:32AM
Hi,

On Mon, Jun 20, 2016, at 14:20, 二戒 wrote:
> I think should this line "location ~* ^/bbs/attachment+\.php?$" has
> mistake, but I can't resolve it.
>
> location ~* ^/bbs/attachment+\.php?$
> {
> valid_referers none blocked *.cnprint.org server_names ~\.google\.
> ~\.baidu\. ~\.360\. ~\.bing\.;
> if ($invalid_referer) {
> # return 403;
> rewrite ^.*$ http://www.cnprint.org;
> }
> }


1. There's probably another regexp location block matching the url
before this block is defined (something like `location ~ \.php$ { }`)
and definition order matters in regexp location.

2. You need fastcgi stuff in the block as well otherwise it'll just
return the attachment.php file.

3. The regexp, while does match /bbs/attachment.php fine, it is a bit
confusing since it also matches /bbs/attachmentttttttt.ph .

3.1. might as well use exact match (`location = /bbs/attachment.php {
}`).

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

how to forbidden other site stealing my forum attachment ?

wangyu1314 June 20, 2016 01:22AM

Re: how to forbidden other site stealing my forum attachment ?

Edho Arief June 20, 2016 01:32AM

Re: how to forbidden other site stealing my forum attachment ?

wangyu1314 June 20, 2016 01:46AM

Re: how to forbidden other site stealing my forum attachment ?

wangyu1314 June 20, 2016 01:56AM

Re: how to forbidden other site stealing my forum attachment ?

Edho Arief June 20, 2016 01:56AM

Re: how to forbidden other site stealing my forum attachment ?

wangyu1314 June 20, 2016 02:12AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

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