From d7d59322c57c9154faa537d8d00e4ec2071f09fa Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Tue, 5 May 2020 19:41:12 +0200 Subject: [PATCH] Add lighttpd conf file for https proxying --- misc/lighttpd.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 misc/lighttpd.conf diff --git a/misc/lighttpd.conf b/misc/lighttpd.conf new file mode 100644 index 0000000..bbea916 --- /dev/null +++ b/misc/lighttpd.conf @@ -0,0 +1,14 @@ +server.modules += ("mod_proxy") +$HTTP["host"] == "domain.tld" { + $HTTP["url"] =~ "^/dijkstra/" { + proxy.server = ( "" => + ( "internal" => + ( + "host" => "localhost", + "port" => 6802 + ) + ) + ) + } +} +