I have a Nginx config that works fine and serves static files properly:
location /static/ {
alias /tmp/static/;
expires 30d;
access_log off;
}
But what I want to do now is that if the static file doesn't exist in /tmp/static
, Nginx looks for the file in /srv/www/site/static
. I am not sure how to achieve that, I have tried a few things with try_files
, but I don't know how to properly use it.