Linode Forum
Linode Community Forums
 FAQFAQ    SearchSearch    MembersMembers      Register Register 
 LoginLogin [ Anonymous ] 
Post new topic  Reply to topic
Author Message
 Post subject:
PostPosted: Mon May 10, 2010 7:28 pm 
Offline
Senior Member

Joined: Sun Aug 02, 2009 1:32 pm
Posts: 222
Website: https://www.barkerjr.net
Location: Connecticut, USA
Guspaz wrote:
Or, you know, goatse...

This is an evil way to deal with hotlinking as well.


Top
   
 Post subject:
PostPosted: Tue May 11, 2010 3:28 am 
Offline
Senior Member

Joined: Mon Apr 27, 2009 7:36 pm
Posts: 59
Website: http://www.xenscale.com
Location: Boise, ID
I was thinking sending it to a rickroll would be a nice way to deal with it.

less likely to cause a legal issue than some of the other suggestions, imo.


Top
   
 Post subject:
PostPosted: Tue May 11, 2010 3:11 pm 
Offline
Senior Member

Joined: Sun Feb 21, 2010 5:12 pm
Posts: 64
In nginx you can set a default server block for an ip:port which just drops the connection (or does whatever):
Code:
# Close connection for any host not defined
server {
  listen 67.67.67.67:80 default;
  return 444;
}

and then define server blocks for specific hosts:
Code:
server {
  listen 67.67.67.67:80;
  server_name example1.com www.site2.com;
  ...
}
[/code]


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
RSS

Powered by phpBB® Forum Software © phpBB Group