Hi,
I'd like to have my server:
1) try the requested uri
2) if not found, try the requested uri on a subdomain (let's say "web")
The logic, as best as I can express it in nginx config syntax, is something like
location ~ /(.*)$ {
try_files /$1 http://web.somedomain.com/$1 =404;
}
But I don't think that syntax/try_files directive is meant to work with different subdomains.
Thanks for any advice!
---
mbwp