view README.md @ 23:949398173ecb

Much simpler setup with $request_filename. Configuration change, bump version.
author edogawaconan <me@myconan.net>
date Thu, 23 Oct 2014 21:47:51 +0900
parents b6b65a5b9c1a
children f9588ccb7a42
line wrap: on
line source

dirlist
=======

Using capability of nginx.

Basically, add this block

    location @lister {
      include fastcgi_params;
      fastcgi_pass unix:/tmp/php-fcgi.sock;
      uninitialized_variable_warn off;
      fastcgi_param DL_DIR $dl_dir;
      fastcgi_param SCRIPT_FILENAME /path/to/index.php;
    }

(adjust the path to `index.php` and `php-fcgi`).

And whenever a directory needs to be autoindexed, add

    location / {
      try_files $uri @lister;
    }

.

Note that if the directory is aliased, `$dl_dir` (fastcgi `DL_DIR`) needs to be set.

    location /anime/win/ {
      set $dl_dir $request_filename;
      alias /srv/ftp/;
      try_files $uri @lister; // try_files "" @lister if the alias is
    }

And done. Probably also works with apache but I have no idea how to set it up.

Upgrading
---------

When upgrading from 1.0.0, update nginx config accordingly.

License
-------

    Copyright 2014 edogawaconan <me@myconan.net>

    Permission to use, copy, modify, and/or distribute this software for any
    purpose with or without fee is hereby granted, provided that the above
    copyright notice and this permission notice appear in all copies.

    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.