-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
37 lines (27 loc) · 1.25 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
fuse-autohttpfs - auto and passing mount to http servers with fuse.
Copyrigyt 2010 Toshiyuki Terashita.
===
mountpoint以降のパス名をURLとみなしてHTTPリクエストします。
====
example 1
$ autohttpfs -o ro /mnt/httpfs/
localhost に httpd を起動しておけば以下は同じ動作になります。
$ curl localhost/index.html
$ cat /mnt/httpfs/localhost/index.html
====
example 2:Apaceでアクセスする場合
/etc/fuse.conf に以下を設定します。
user_allow_other
mountオプションを追加してapacheからのアクセスを許可します。
$ autohttpfs -o ro,noexec,allow_other,default_permissions /var/www/html/httpfs/
=== .proc/
'mountpoint/.proc' は /proc のようなコントロールファイルです。
.proc/
+- cache/
+- enable 0:キャッシュ無効 1:有効
+- entries 有効期限を切れたものを含めたキャッシュエントリ数
+- expire キャッシュの有効期限(単位:sec)
+- loglevel syslogレベル
+- max_entries 最大キャッシュエントリ数
エントリからの削除を開始するしきい値です。
entries がこの値を越える事があります。