26 messages in ru.sysoev.nginxRe: question about traffic statistics...
FromSent OnAttachments
sinnis rOct 21, 2007 11:04 pm 
Manlio PerilloOct 22, 2007 2:52 am 
Fernando PerezJul 3, 2008 3:02 am 
mikeJul 3, 2008 10:56 am 
ThomasOct 1, 2008 9:20 am 
Maxim DouninOct 1, 2008 9:42 am 
mikeOct 1, 2008 12:05 pm 
Maxim DouninOct 1, 2008 1:43 pm 
mikeOct 1, 2008 3:39 pm 
ThomasOct 2, 2008 5:37 am 
Ed WOct 2, 2008 9:12 am 
mikeOct 2, 2008 10:14 am 
ThomasOct 4, 2008 11:03 am 
ThomasOct 4, 2008 12:04 pm 
ThomasOct 4, 2008 12:14 pm 
mikeOct 4, 2008 12:24 pm 
Igor SysoevOct 4, 2008 12:28 pm 
ThomasOct 4, 2008 12:32 pm 
Igor SysoevOct 4, 2008 12:39 pm 
ThomasOct 4, 2008 12:55 pm 
mikeOct 8, 2008 12:07 am 
mikeOct 8, 2008 12:16 am 
ThomasOct 8, 2008 1:44 am 
mikeOct 8, 2008 11:59 am 
Maxim DouninOct 8, 2008 2:13 pm 
mikeOct 8, 2008 2:27 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: question about traffic statistics on each vhost,is it poActions...
From:Igor Sysoev (is@rambler-co.ru)
Date:Oct 4, 2008 12:28:53 pm
List:ru.sysoev.nginx

On Sat, Oct 04, 2008 at 09:15:08PM +0200, Thomas wrote:

This is getting bad! There is another polish website that appears in my $host list, and this bloody website is actually pointing to my server!!! I can trace myself clicking around in their website, and I see it appear in my nginx log files!!!

Who the f**k would want to do that? Are they trying to intercept some of my customers? What's happening!?

Have no idea what they want (may be some XSS). You can prevent unwanted names using:

server { listen 80 default; server_name _; # invalid name, catch all return 404; }

server { listen 80; server_name www.site.com site.com alias.site.com your.ip.address "" # request without host header (0.7.12+) ; ... } }

server { listen 80; server_name other.site.com; ... }