From 0b1e4d027a89c182e35ac6acee6f1a8e04a992e1 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Tue, 7 Nov 2006 16:37:09 +0000 Subject: [PATCH] Change httpd realm to match the hostname (#932) SVN-Revision: 5464 --- package/base-files/default/etc/init.d/httpd | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package/base-files/default/etc/init.d/httpd b/package/base-files/default/etc/init.d/httpd index a05b10c094..e4f5f48e9c 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() {