diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/mini_httpd/mini_httpd.conf.sample | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/mini_httpd/mini_httpd.conf.sample')
-rw-r--r-- | main/mini_httpd/mini_httpd.conf.sample | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/main/mini_httpd/mini_httpd.conf.sample b/main/mini_httpd/mini_httpd.conf.sample new file mode 100644 index 0000000000..397a331ad3 --- /dev/null +++ b/main/mini_httpd/mini_httpd.conf.sample @@ -0,0 +1,50 @@ +## /etc/mini_httpd.conf +## +## do not leave empty lines in here! +## format is: key=value +## +## run in debug-mode? +#debug +## +## what interface to bind to? +## (default is binding to any interface) +#host=www.example.org +port=80 +#port=443 +user=nobody +## +## The DOCROOT +dir=/var/www/localhost/htdocs +## +## CGI: +## ? match a single char +## * matches any string excluding "/" +## ** matches any string including "/" +## separate multiple patterns with "|" +#cgipat=**.sh|**.cgi +## +## chroot: +chroot +#nochroot +## +logfile=/var/log/mini_httpd.log +## +#charset=iso-8859-1 +## +## control the caching: (in secs) +#maxage 60 +## +## useless setting (just modifies the http-header) +## (see mini_httpd(8) and http://www.w3.org/P3P/ for more info) +#p3p +## +## virtual hosting: +#vhost +## +## cache-control: send this "max-age" in all HTTP-responses: +#max-age=0 +## +## ssl: +#nossl +#ssl +#certfile=/etc/mini_httpd/mini_httpd.pem |