Author: blogic Date: 2015-10-19 12:08:01 +0200 (Mon, 19 Oct 2015) New Revision: 47206
Modified: trunk/package/network/services/uhttpd/Makefile trunk/package/network/services/uhttpd/files/uhttpd.init Log: uhttpd: update to latest git revision adds URL alias support Signed-off-by: John Crispin <[email protected]> Modified: trunk/package/network/services/uhttpd/Makefile =================================================================== --- trunk/package/network/services/uhttpd/Makefile 2015-10-19 10:07:54 UTC (rev 47205) +++ trunk/package/network/services/uhttpd/Makefile 2015-10-19 10:08:01 UTC (rev 47206) @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=uhttpd -PKG_VERSION:=2015-10-08 +PKG_VERSION:=2015-10-17 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://nbd.name/uhttpd2.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=7ed2edc40dd6d0171266f3bfbc96466e1d25e3cd +PKG_SOURCE_VERSION:=3614ae6eb7b6101fa5d0f14ff0d3a6eb4970c3da PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_MAINTAINER:=Felix Fietkau <[email protected]> PKG_LICENSE:=ISC Modified: trunk/package/network/services/uhttpd/files/uhttpd.init =================================================================== --- trunk/package/network/services/uhttpd/files/uhttpd.init 2015-10-19 10:07:54 UTC (rev 47205) +++ trunk/package/network/services/uhttpd/files/uhttpd.init 2015-10-19 10:08:01 UTC (rev 47206) @@ -94,6 +94,11 @@ append_bool "$cfg" no_dirlists "-D" 0 append_bool "$cfg" rfc1918_filter "-R" 0 + config_get alias_list "$cfg" alias + for alias in $alias_list; do + procd_append_param command -y "$alias" + done + config_get http "$cfg" listen_http for listen in $http; do procd_append_param command -p "$listen" _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
