Nginx 0.8.54: Index files bug?

Dayo nginx-forum at nginx.us
Fri Feb 11 17:13:06 MSK 2011


[code]
server {
...
	index index.html;
	location / {
                error_log  /path/to/log  debug;
		try_files $uri $uri/;
	}
}
[/code]

...gives me an empty error log file.

I don't think my isp has cached the response because as soon as I change
to ...

[code]
server {
...
	index index.html;
	location / {
		try_files $uri $uri/ @proxy;
	}
}
[/code]

It starts working ... using the apache index files setup.

Wonder whether anyone else can reproduce

Posted at Nginx Forum: http://forum.nginx.org/read.php?2,174111,174140#msg-174140




More information about the nginx mailing list