itpp2012 Wrote:
-------------------------------------------------------
> http://stackoverflow.com/questions/18415508/how-to-make-url-case-insen
> sitive-with-nginx
> http://www.nginxtips.com/nginx-location-directive/
So what's haapen if I'd have this senario:
A root folder named /home and many files and folders into it for example:
/home/img/1.gif
/home/img/2.gif
/home/video/1.mp4
/home/video/2.mp4
/home/prog/1.exe
/home/prog/2.exe
And server block configuration:
server {
listen 80;
server_name mydomain.com;
root /home/;
location / {
autoindex off;
}
How can I configure location block to work case insensitive for this senario?