Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save SeptiyanAndika/b4524732db8b1b44d7d60e8652242c04 to your computer and use it in GitHub Desktop.
Save SeptiyanAndika/b4524732db8b1b44d7d60e8652242c04 to your computer and use it in GitHub Desktop.
Proxy Pass cloudinary
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