Mercurial > dirlist-php
annotate README.md @ 24:f9588ccb7a42
Add note for optional parameter.
author | edogawaconan <me@myconan.net> |
---|---|
date | Thu, 23 Oct 2014 21:50:52 +0900 |
parents | 949398173ecb |
children | ce92f4d41714 |
rev | line source |
---|---|
13
b6b65a5b9c1a
Change readme title and add note for apache.
edogawaconan <me@myconan.net>
parents:
12
diff
changeset
|
1 dirlist |
b6b65a5b9c1a
Change readme title and add note for apache.
edogawaconan <me@myconan.net>
parents:
12
diff
changeset
|
2 ======= |
1 | 3 |
4 Using capability of nginx. | |
5 | |
6 Basically, add this block | |
7 | |
8 location @lister { | |
10
47a281c1d54e
Update documentation to match current code.
edogawaconan <me@myconan.net>
parents:
1
diff
changeset
|
9 include fastcgi_params; |
1 | 10 fastcgi_pass unix:/tmp/php-fcgi.sock; |
24
f9588ccb7a42
Add note for optional parameter.
edogawaconan <me@myconan.net>
parents:
23
diff
changeset
|
11 |
f9588ccb7a42
Add note for optional parameter.
edogawaconan <me@myconan.net>
parents:
23
diff
changeset
|
12 // BEGIN -- only when using alias |
10
47a281c1d54e
Update documentation to match current code.
edogawaconan <me@myconan.net>
parents:
1
diff
changeset
|
13 uninitialized_variable_warn off; |
23
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
14 fastcgi_param DL_DIR $dl_dir; |
24
f9588ccb7a42
Add note for optional parameter.
edogawaconan <me@myconan.net>
parents:
23
diff
changeset
|
15 // END ---- only when using alias |
f9588ccb7a42
Add note for optional parameter.
edogawaconan <me@myconan.net>
parents:
23
diff
changeset
|
16 |
10
47a281c1d54e
Update documentation to match current code.
edogawaconan <me@myconan.net>
parents:
1
diff
changeset
|
17 fastcgi_param SCRIPT_FILENAME /path/to/index.php; |
1 | 18 } |
19 | |
23
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
20 (adjust the path to `index.php` and `php-fcgi`). |
1 | 21 |
23
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
22 And whenever a directory needs to be autoindexed, add |
1 | 23 |
10
47a281c1d54e
Update documentation to match current code.
edogawaconan <me@myconan.net>
parents:
1
diff
changeset
|
24 location / { |
47a281c1d54e
Update documentation to match current code.
edogawaconan <me@myconan.net>
parents:
1
diff
changeset
|
25 try_files $uri @lister; |
47a281c1d54e
Update documentation to match current code.
edogawaconan <me@myconan.net>
parents:
1
diff
changeset
|
26 } |
47a281c1d54e
Update documentation to match current code.
edogawaconan <me@myconan.net>
parents:
1
diff
changeset
|
27 |
23
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
28 . |
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
29 |
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
30 Note that if the directory is aliased, `$dl_dir` (fastcgi `DL_DIR`) needs to be set. |
10
47a281c1d54e
Update documentation to match current code.
edogawaconan <me@myconan.net>
parents:
1
diff
changeset
|
31 |
1 | 32 location /anime/win/ { |
23
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
33 set $dl_dir $request_filename; |
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
34 alias /srv/ftp/; |
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
35 try_files $uri @lister; // try_files "" @lister if the alias is |
1 | 36 } |
37 | |
23
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
38 And done. Probably also works with apache but I have no idea how to set it up. |
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
39 |
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
40 Upgrading |
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
41 --------- |
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
42 |
949398173ecb
Much simpler setup with $request_filename.
edogawaconan <me@myconan.net>
parents:
13
diff
changeset
|
43 When upgrading from 1.0.0, update nginx config accordingly. |
12 | 44 |
45 License | |
46 ------- | |
47 | |
48 Copyright 2014 edogawaconan <me@myconan.net> | |
49 | |
50 Permission to use, copy, modify, and/or distribute this software for any | |
51 purpose with or without fee is hereby granted, provided that the above | |
52 copyright notice and this permission notice appear in all copies. | |
53 | |
54 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
55 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
56 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | |
57 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | |
58 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | |
59 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | |
60 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |