Skip to content

Instantly share code, notes, and snippets.

@ninapavlich
Created July 2, 2018 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ninapavlich/b59381be166d43adba3d2341a8ee6c94 to your computer and use it in GitHub Desktop.
Save ninapavlich/b59381be166d43adba3d2341a8ee6c94 to your computer and use it in GitHub Desktop.
Serve media from multiple directories
server {
....
location ~ /media/([a-zA-Z0-9\-_\/\.]+)$ {
root /var/www/mysite/;
try_files /media/$1 /uploads/$1 =404;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment