Skip to content

Instantly share code, notes, and snippets.

@sergiolopes
Created December 30, 2015 16:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergiolopes/8be58cd45ff1e430a0ab to your computer and use it in GitHub Desktop.
Save sergiolopes/8be58cd45ff1e430a0ab to your computer and use it in GitHub Desktop.
Mini vimeo proxy
server {
listen 12000;
location / {
set $vimeo_host $arg_host;
resolver 8.8.8.8;
proxy_pass $vimeo_host;
proxy_buffering off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment