Skip to content

Instantly share code, notes, and snippets.

View rbndelrio's full-sized avatar

Ruben Del Rio rbndelrio

  • Springer-Nature / Scientific American
  • New York, New York
  • 09:24 (UTC -05:00)
View GitHub Profile
@rbndelrio
rbndelrio / uploads.conf
Created November 13, 2018 16:33
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;
}