Skip to content

Instantly share code, notes, and snippets.

@rbndelrio
Created November 13, 2018 16:33
Show Gist options
  • Save rbndelrio/9a83b1e73e628606795f03231bb834d4 to your computer and use it in GitHub Desktop.
Save rbndelrio/9a83b1e73e628606795f03231bb834d4 to your computer and use it in GitHub Desktop.
nginx redirect for wp uploads (good for local dev)
location ~* \.(js|css|png|jpe?g|gif|ico)$ {
expires 24h;
log_not_found off;
try_files $uri $uri/ @production;
}
location @production {
resolver 8.8.8.8;
proxy_pass https://www.prodsite.com/$uri;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment