Created
June 6, 2016 05:17
-
-
Save SeptiyanAndika/b4524732db8b1b44d7d60e8652242c04 to your computer and use it in GitHub Desktop.
Proxy Pass cloudinary
This file contains hidden or 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 80; | |
server_name res.server-name.me; | |
gzip on; | |
gzip_proxied any; | |
location / { | |
proxy_pass http://res.cloudinary.com/account-name/; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment