1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
+
|
<H2>NAME</H2>
filed - serve files over HTTP
<A NAME="lbAC"> </A>
<H2>SYNOPSIS</H2>
<B>filed</B>
[{<B>-h</B>|<B>--help</B>}]
[{<B>-d</B>|<B>--daemon</B>}]
[{<B>-v</B>|<B>--version</B>}]
[{<B>-V</B>|<B>--vhost</B>}]
[{<B>-b</B>|<B>--bind</B>}
<I>address</I>]
[{<B>-p</B>|<B>--port</B>}
<I>port</I>]
[{<B>-t</B>|<B>--threads</B>}
<I>count</I>]
[{<B>-c</B>|<B>--cache</B>}
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
+
+
+
+
+
|
the listening TCP socket and log files.
<P>
<DT><B>-v (or --version)</B>
<DD>
Instructs
<B>filed</B>
to print out its version number and then exit.
<P>
<DT><B>-V (or --vhost)</B>
<DD>
instructs filed to prepend all requests with their HTTP
Host header.
<P>
<DT><B>-b (or --bind)</B>
<DD>
Specifies the address to listen for incoming HTTP
requests on.
<P>
<DT><B>-p (or --port)</B>
|