Welcome! Log In Create A New Profile

Advanced

Re: Need logic to not check for bad user agent if xml file

Maxim Dounin
December 20, 2018 08:24AM
Hello!

On Thu, Dec 20, 2018 at 01:42:49AM -0800, lists@lazygranch.com wrote:

> I have a map to check for bad user agents called badagent. I want to
> set up a RSS feed. The feedreaders can have funny agents, so I need to
> omit the bad agent check if the file is any xml type.
>
> This is rejected.
>
> if (($request_uri != [*.xml]) && ($badagent)) {return 444; }
>
> Suggestions?
>
> I can put the xml files in a separate location if that helps.

Doing the $badagent only in locations where you want to reject
bots would be the most simple approach. That is, consider
something like this:

location / {
if ($badagent) {
return 403;
}

...
}

location /rss/ {
...
}

--
Maxim Dounin
http://mdounin.ru/
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Need logic to not check for bad user agent if xml file

gariac December 20, 2018 04:44AM

Re: Need logic to not check for bad user agent if xml file

Maxim Dounin December 20, 2018 08:24AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

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