Skip to content

Instantly share code, notes, and snippets.

@lukemartin
Created December 10, 2012 15:40
Show Gist options
  • Save lukemartin/4251315 to your computer and use it in GitHub Desktop.
Save lukemartin/4251315 to your computer and use it in GitHub Desktop.
nginx: Set up a proxy to access ISP-blocked sites
server {
listen 80;
server_name thepiratebay.example.com;
location / {
proxy_pass http://thepiratebay.se/;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment