Skip to content

Instantly share code, notes, and snippets.

@lpirola
Last active August 29, 2015 14:04
Show Gist options
  • Save lpirola/533982fb39992d85bdfb to your computer and use it in GitHub Desktop.
Save lpirola/533982fb39992d85bdfb to your computer and use it in GitHub Desktop.
Wordpress local development with nginx redirecting image uploads extenal server url
# Forward requests for images to another site
location ~ ^/content/uploads/(.*)\.(jpg|gif|png)$ {
rewrite ^(.*)$ http://www.example.org.br/$1 last;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment