I just can't get #nginx try_files to work with #nginxProxyManager like I want.
I have a /local/images with image files, but I want to have a default fallback image when the requested URL is not found. So if AAA.png is missing, instead of a 404, I want Nginx to serve NONE.png.
The default proxy host is pointing to /
I added a new location for /local/images and the below entry
try_files $uri /local/images/NONE.png;
When I try to access /local/images/VALIDFILE.png, it works, but I get a 500 error if I try to access NONE.png or a non-existent file.
I don't know if it's because try_files isn't meant to be used with proxy_pass



