diff options
author | Steven Barth <cyrus@openwrt.org> | 2014-06-11 12:11:55 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2014-06-11 12:11:55 +0000 |
commit | e50f3b4fc74037be739871eaa25338f3b4d55f69 (patch) | |
tree | ce08a5c11eacd4042278fafe3c43cf2bc360e6d4 /package/network | |
parent | d373178835f665896f5c4534ecb89ae47911690b (diff) | |
download | upstream-e50f3b4fc74037be739871eaa25338f3b4d55f69.tar.gz upstream-e50f3b4fc74037be739871eaa25338f3b4d55f69.tar.bz2 upstream-e50f3b4fc74037be739871eaa25338f3b4d55f69.zip |
uhttpd: also bind to IPv6 by default
SVN-Revision: 41114
Diffstat (limited to 'package/network')
-rw-r--r-- | package/network/services/uhttpd/Makefile | 2 | ||||
-rw-r--r-- | package/network/services/uhttpd/files/uhttpd.config | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/package/network/services/uhttpd/Makefile b/package/network/services/uhttpd/Makefile index 1e4ed896c4..ba2ca55b04 100644 --- a/package/network/services/uhttpd/Makefile +++ b/package/network/services/uhttpd/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=uhttpd -PKG_VERSION:=2014-06-08 +PKG_VERSION:=2014-06-11 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git diff --git a/package/network/services/uhttpd/files/uhttpd.config b/package/network/services/uhttpd/files/uhttpd.config index 683e032fb4..83734af5a9 100644 --- a/package/network/services/uhttpd/files/uhttpd.config +++ b/package/network/services/uhttpd/files/uhttpd.config @@ -3,11 +3,11 @@ config uhttpd main # HTTP listen addresses, multiple allowed list listen_http 0.0.0.0:80 -# list listen_http [::]:80 + list listen_http [::]:80 # HTTPS listen addresses, multiple allowed list listen_https 0.0.0.0:443 -# list listen_https [::]:443 + list listen_https [::]:443 # Server document root option home /www |