Re: autoindex subdirectories

2019-05-09 Thread Igor A. Ippolitov
Hello, guys. I think I have a POC using autoindex, ssi and xslt. Obviously it requires further tweaking. You can use configuration like this: map $uri $doc {     ~*/index[^/]*(.*) $1; } server {     listen 8080;     proxy_http_version 1.1;     location /index/ {     alias /tests/nginx;   

Re: autoindex subdirectories

2019-05-08 Thread Patrick
On 2019-05-09 08:48, Duke Dougal wrote: > Is there any way to get autoindex to return a recursive list of > files/directories? What modules do you have available to work with? Just using default built modules, there doesn't seem to be a way. Using non-default modules, you could use: 1) ngx_http

autoindex subdirectories

2019-05-08 Thread Duke Dougal
I have autoindex working fine. However it only returns a directory listing at the specific directory level requested. Is there any way to get autoindex to return a recursive list of files/directories? thanks! ___ nginx mailing list nginx@nginx.org http