diff options
author | Koen Kooi <koen@openembedded.org> | 2009-02-15 08:54:47 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-02-15 08:54:47 +0100 |
commit | 1f35cfe7b1a8f202b01e6995b0dc803c7965feeb (patch) | |
tree | ecce9e0ec9a652097137007fafdf805765b8b146 /packages/mini-httpd/files/mini-httpd.conf | |
parent | d54a908d3f306ea41429fb2ceb39d9e52705f141 (diff) | |
parent | fef3375fcfc10d047f7b54416ee19062f78ae07b (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'packages/mini-httpd/files/mini-httpd.conf')
-rw-r--r-- | packages/mini-httpd/files/mini-httpd.conf | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/packages/mini-httpd/files/mini-httpd.conf b/packages/mini-httpd/files/mini-httpd.conf new file mode 100644 index 0000000000..cb4150c3d9 --- /dev/null +++ b/packages/mini-httpd/files/mini-httpd.conf @@ -0,0 +1,37 @@ +# Example config for mini_httpd. +# Author: Marvin Stark <marv@der-marv.de> + +# Uncomment this line for turning on ssl support. +#ssl + +# On which host mini_httpd should bind? +host=0.0.0.0 + +# On which port mini_httpd should listen? +port=80 + +# Which user mini_httpd should use? +user=nobody + +# Run in chroot mode? +#chroot # yes +nochroot # no + +# Working directory of mini_httpd. +#dir=<work_dir> + +# We are the web files stored? +data_dir=/etc/mini-httpd + +# Which certificate to use? +#certfile=<certfile> + +# Which logfile to use? +logfile=/var/log/mini-httpd.log + +# Which pidfile to use? +pidfile=/var/run/mini-httpd.pid + +# Which charset to use? +charset=iso-8859-1 + |