Skip to content

Instantly share code, notes, and snippets.

@uroshekic
Created August 20, 2014 12:57
Show Gist options
  • Save uroshekic/cd789fd4638de27e8b84 to your computer and use it in GitHub Desktop.
Save uroshekic/cd789fd4638de27e8b84 to your computer and use it in GitHub Desktop.
Nginx proxy
server {
listen 8080;
server_name proxy;
location / {
resolver 8.8.8.8;
proxy_set_header Accept-Encoding "";
proxy_pass http://xkcd.com$uri$is_args$args;
}
}
@uroshekic
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment