On 04/01/13 16:51, etrader wrote:
I want to server favicon from a different place rather than the root folder. As I explored I have two options1. location = /favicon.ico { alias /var/www/media/images/favicon.X.ico; }
It is working option.
2. rewrite ^/favicon.ico /var/www/media/images/favicon.X.ico last;
This is wrong - you can rewrite to other location, not to path on file system. Anyway rewrite does not need here, use location. _______________________________________________ nginx mailing list [email protected] http://mailman.nginx.org/mailman/listinfo/nginx
