Skip to content

Instantly share code, notes, and snippets.

@stevenc81
Created November 18, 2017 10:23
Show Gist options
  • Save stevenc81/306f89744b62a79873fea743af71f3e4 to your computer and use it in GitHub Desktop.
Save stevenc81/306f89744b62a79873fea743af71f3e4 to your computer and use it in GitHub Desktop.
real_ip_header X-Forwarded-For;
set_real_ip_from 0.0.0.0/0;
split_clients "$remote_addr" $variant {
50% "google.com";
* "yahoo.com";
}
server {
listen 80;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
location / {
resolver 8.8.8.8;
proxy_pass https://$variant;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment