-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME
32 lines (18 loc) · 963 Bytes
/
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
= shttpd =
shttpd is an HTTP server written entirely in POSIX shell script.
== Why? ==
Because you can! Also, there are some real advantages:
* Compact, understandable codebase
* Trivial to configure/extend
* Run from anywhere and just start serving!
* Get lots of nice debug output in your terminal
== Running ==
To start an instance of the server just run:
./shttpd -p <port> -C <document root> -m modules/dirlist.mod:modules/static.mod
You can list whatever modules you want to load (order matters!) but this will get you started.
== Extending ==
Writing modules is easy! Look a the ones in the modules directory for examples.
Basically, you write some shell code that gets sourced into the server, and manipulate the environment according to your needs.
== Deploying ==
Each instance of the server can only handle one connection, so you will need some other server to round-robin proxy.
You may also configure inetd to call the server with -i