Skip to content

Instantly share code, notes, and snippets.

@Ritesh-patel
Created October 23, 2017 12:55
Show Gist options
  • Save Ritesh-patel/ad77885de1ce7aa305f3e0aef7b57709 to your computer and use it in GitHub Desktop.
Save Ritesh-patel/ad77885de1ce7aa305f3e0aef7b57709 to your computer and use it in GitHub Desktop.
Use it for local site development and to fetch media files from prod site.
# Proxy uploads from production
location ~* \.(js|css|png|jpg|jpeg|gif|ico|mp3|mov|tif|tiff|swf|txt|html|svg)$ {
expires 24h;
log_not_found off;
try_files $uri $uri/ @production;
}
location @production {
resolver 8.8.8.8;
proxy_pass {prod_url}/$uri;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment