From 1e9a7c03d4f6f4fcc6124a6ef48a4806fbb9237a Mon Sep 17 00:00:00 2001 From: Paul-Emile Element Date: Mon, 20 Aug 2018 11:09:04 -0400 Subject: [PATCH] Add ipv6 support in default lighttpd configuration The installed lighttpd.conf file missed an entry for ipv6 support This modification simply adds the missing configuration entry to enable the system to properly support ipv6 configurations Story: 2002986 Task: 23000 Change-Id: I3551e5cfeb4d31a8fefcbd3f6f1350bb17984053 Signed-off-by: Paul-Emile Element --- base/lighttpd/centos/build_srpm.data | 2 +- base/lighttpd/lighttpd-1.4.35/lighttpd.conf | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/base/lighttpd/centos/build_srpm.data b/base/lighttpd/centos/build_srpm.data index f057a5a58..6d94d3e28 100755 --- a/base/lighttpd/centos/build_srpm.data +++ b/base/lighttpd/centos/build_srpm.data @@ -6,4 +6,4 @@ COPY_LIST="lighttpd-1.4.35/index.html.lighttpd \ lighttpd-1.4.35/lighttpd-csr.conf \ lighttpd-1.4.35/check-content-length.patch \ lighttpd-1.4.35/lighttpd-tpm-support.patch" -TIS_PATCH_VER=5 +TIS_PATCH_VER=6 diff --git a/base/lighttpd/lighttpd-1.4.35/lighttpd.conf b/base/lighttpd/lighttpd-1.4.35/lighttpd.conf index 48ada9b6d..31b294800 100755 --- a/base/lighttpd/lighttpd-1.4.35/lighttpd.conf +++ b/base/lighttpd/lighttpd-1.4.35/lighttpd.conf @@ -243,6 +243,9 @@ $HTTP["url"] !~ "^/(rel-[^/]*|feed|updates|static)/" { # ".cgi" => "/usr/bin/perl" ) # +#### Listen to IPv6 +$SERVER["socket"] == "[::]:80" { } + #### status module #status.status-url = "/server-status" #status.config-url = "/server-config"