Skip to content

Instantly share code, notes, and snippets.

@junaidbhura
Created September 20, 2018 07:41
Show Gist options
  • Save junaidbhura/e4a159df578a688965329bcacda900b1 to your computer and use it in GitHub Desktop.
Save junaidbhura/e4a159df578a688965329bcacda900b1 to your computer and use it in GitHub Desktop.
Nginx Remote WordPress Images for Local Development
location ~ ^/wp-content/uploads/[^\/]*/.*$ {
log_not_found off;
try_files $uri $uri/ @production;
}
location @production {
rewrite ^/wp-content/uploads/(.*)$ https://<bucket-name>.s3.amazonaws.com/uploads/$1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment