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