csync-git
[mirrors/ArchLinux-Packages.git] / busybox-httpd / httpd-rc.conf
CommitLineData
209feeb0
H
1#!/bin/sh
2
3bind='80';
4 #-p [IP:]PORT Bind to ip:port (default *:80)
5root='/srv/http';
6 #-h HOME Home directory (default .)
7conf='/etc/busybox/httpd.conf';
8 #-c FILE Configuration file (default httpd.conf)
9user='http:http';
10 #-u USER[:GRP] Set uid/gid after binding to port (make sure that user exists)
11realm='Protected Area';
12 #-r REALM Authentication Realm for Basic Authentication
13
14log='/var/log/busybox-httpd.log';
15pidfile='/var/run/busybox-httpd.pid';
This page took 0.253676 seconds and 4 git commands to generate.