Created
December 30, 2015 16:42
-
-
Save sergiolopes/8be58cd45ff1e430a0ab to your computer and use it in GitHub Desktop.
Mini vimeo proxy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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