summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
Diffstat (limited to 'package')
-rwxr-xr-xpackage/base-files/default/etc/init.d/httpd5
1 files changed, 4 insertions, 1 deletions
diff --git a/package/base-files/default/etc/init.d/httpd b/package/base-files/default/etc/init.d/httpd
index a05b10c09..e4f5f48e9 100755
--- a/package/base-files/default/etc/init.d/httpd
+++ b/package/base-files/default/etc/init.d/httpd
@@ -2,7 +2,10 @@
# Copyright (C) 2006 OpenWrt.org
start() {
- [ -d /www ] && httpd -p 80 -h /www -r OpenWrt
+ include /lib/network
+ scan_interfaces
+ config_get ifname wan hostname
+ [ -d /www ] && httpd -p 80 -h /www -r ${hostname:-OpenWrt}
}
stop() {