[PATCH] Re: nginx-0.7.55

maxhl at hitline.net.ua maxhl at hitline.net.ua
Wed May 6 18:30:50 MSD 2009


Спасибо патч работает. Было бы хорошо реализовать опцию как в апаче. 

-----Original Message-----
From: owner-nginx-ru at sysoev.ru [mailto:owner-nginx-ru at sysoev.ru] On Behalf
Of Sergey A. Osokin
Sent: Wednesday, May 06, 2009 4:57 PM
To: nginx-ru at sysoev.ru
Cc: maxhl at hitline.net.ua
Subject: [PATCH] Re: nginx-0.7.55

On Wed, May 06, 2009 at 03:13:59PM +0300, maxhl at hitline.net.ua wrote:
> Подскажите а можно заставить ngx_http_autoindex_module показывать 
> директории начинающиеся с точки ? Типа .com .net?

Патч в первом приближении.

--- src/http/modules/ngx_http_autoindex_module.c.orig	2009-05-06
17:40:29.000000000 +0400
+++ src/http/modules/ngx_http_autoindex_module.c	2009-05-06
17:45:14.000000000 +0400
@@ -269,10 +269,17 @@
 
         len = ngx_de_namelen(&dir);
 
-        if (ngx_de_name(&dir)[0] == '.') {
+        if (len == 1 && ngx_de_name(&dir)[0] == '.') {
             continue;
         }
 
+	if (len == 2
+	    && ngx_de_name(&dir)[0] == '.'
+	    && ngx_de_name(&dir)[1] == '.')
+	{
+	    continue;
+	}
+
         if (!dir.valid_info) {
 
             /* 1 byte for '/' and 1 byte for terminating '\0' */


--
Sergey A. Osokin,
System Engineer,
Macomnet, Internet Dept.
tel: +7 (495) 796-9079
fax: +7 (495) 796-9067






More information about the nginx-ru mailing list