Skip to content

Instantly share code, notes, and snippets.

@parsafatehi
Last active August 16, 2021 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parsafatehi/2f41bb74df7e57ae7b1f64374fd1b744 to your computer and use it in GitHub Desktop.
Save parsafatehi/2f41bb74df7e57ae7b1f64374fd1b744 to your computer and use it in GitHub Desktop.
Load WordPress remote images if they don't exist on the local Nginx.
location ~ ^/wp-content/uploads/(.*) {
if (!-f $request_filename) {
rewrite ^/wp-content/uploads/(.*)$ http://REMOTE_DOMAIN.com/wp-content/uploads/$1 redirect;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment