From 76ae94b4f37419f755580da31bed725e4c2a341f Mon Sep 17 00:00:00 2001 From: radarjd Date: Thu, 28 Jan 2021 22:10:04 -0500 Subject: [PATCH] match all domains ending in pi.alert in lighttpd causes lighttpd to match any subdomain of pi.alert (e.g. www.pi.alert) to this virtual server this addresses issue #54 --- install/pialert_front.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/pialert_front.conf b/install/pialert_front.conf index 7f0b9ab9a..05a1f1b7a 100644 --- a/install/pialert_front.conf +++ b/install/pialert_front.conf @@ -7,6 +7,6 @@ # Puche 2021 pi.alert.application@gmail.com GNU GPLv3 # ------------------------------------------------------------------------------ -$HTTP["host"] == "pi.alert" { +$HTTP["host"] =~ "pi\.alert" { server.document-root = "/var/www/html/pialert/" }