Welcome! Log In Create A New Profile

Advanced

Re: Map Module and Domains

Oleksandr V. Typlyns'kyi
July 03, 2012 01:24PM
Tomorrow Jul 4, 2012 at 03:01 SplitIce wrote:

> Ok, I was reading up on the map module and it seems the right way to do
> this, howeaver I really couldnt think of a way to do this (without just
> using the if alternative way).
>
> Blocking domains is what I want to do, my server blocks are per IP
> accepting everything for any domain, howeaver I want to filter certain
> [blocked] domains away by way of proxy passing or redirecting to another
> URL.

You can use another server block for that domains.
http://nginx.org/en/docs/http/request_processing.html

server {
listen 192.168.1.1:80;
...
}

server {
listen 192.168.2.2:80;
...
}

server {
listen 192.168.1.1:80;
listen 192.168.2.2:80;
server_name blocked.example.org *.filtered.net badsite.*;
...
}



--
WNGS-RIPE

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

Map Module and Domains

splitice July 03, 2012 01:12PM

Re: Map Module and Domains

Oleksandr V. Typlyns'kyi July 03, 2012 01:24PM

Re: Map Module and Domains

splitice July 04, 2012 11:46AM

Re: Map Module and Domains

Oleksandr V. Typlyns'kyi July 04, 2012 05:58PM

Re: Map Module and Domains

Ruslan Ermilov July 05, 2012 10:54AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

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