summaryrefslogtreecommitdiff
path: root/package/busybox/files/httpd
diff options
context:
space:
mode:
Diffstat (limited to 'package/busybox/files/httpd')
-rwxr-xr-xpackage/busybox/files/httpd13
1 files changed, 13 insertions, 0 deletions
diff --git a/package/busybox/files/httpd b/package/busybox/files/httpd
new file mode 100755
index 0000000..e4f5f48
--- /dev/null
+++ b/package/busybox/files/httpd
@@ -0,0 +1,13 @@
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006 OpenWrt.org
+
+start() {
+ include /lib/network
+ scan_interfaces
+ config_get ifname wan hostname
+ [ -d /www ] && httpd -p 80 -h /www -r ${hostname:-OpenWrt}
+}
+
+stop() {
+ killall httpd
+}