Skip to content

Instantly share code, notes, and snippets.

@dpellenwood
Last active December 2, 2015 20:25
Show Gist options
  • Save dpellenwood/7645a5c9e2d941d53be4 to your computer and use it in GitHub Desktop.
Save dpellenwood/7645a5c9e2d941d53be4 to your computer and use it in GitHub Desktop.
Try local files
# Proxy uploads from the live server
location ~ ^/wp-content/uploads/(.*) {
try_files $uri @img_proxy;
}
location @img_proxy {
rewrite ^/wp-content/uploads/(.*)$ https://example.com/wp-content/uploads/$1 redirect;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment