Usando o nginx / 1.4.1 com o OpenBSD 5.4, 64 bits:
Como podemos definir o nginx para mostrar o nome completo do arquivo (ou pelo menos mostrar mais do nome do arquivo que o padrão) ao usar a listagem de diretórios?
Pesquisar no Google apenas me deu o seguinte:
http://forum.nginx.org/read.php?2,124400,167420#msg-167420
January 18, 2011 08:36PM
fagtron
I looked all over the net and wasn't able to find this answer anyway, so I looked into the nginx source files and it's very easy.
Simply modify the file located at [b]src/http/modules/ngx_http_autoindex_module.c[/b] and then compile.
Change these lines:
[b]#define NGX_HTTP_AUTOINDEX_PREALLOCATE 50
#define NGX_HTTP_AUTOINDEX_NAME_LEN 50[/b]
to whatever you want, such as:
[b]#define NGX_HTTP_AUTOINDEX_PREALLOCATE 100
#define NGX_HTTP_AUTOINDEX_NAME_LEN 100[/b]
And then compile and restart nginx. That's it !!!
Pergunta : não existe outra maneira de recomplicá-lo?