Add lighttpd conf file for https proxying

feature/trainlines-wip
Markus Koch 2020-05-05 19:41:12 +02:00
parent 15945c08f7
commit d7d59322c5
1 changed files with 14 additions and 0 deletions

14
misc/lighttpd.conf 100644
View File

@ -0,0 +1,14 @@
server.modules += ("mod_proxy")
$HTTP["host"] == "domain.tld" {
$HTTP["url"] =~ "^/dijkstra/" {
proxy.server = ( "" =>
( "internal" =>
(
"host" => "localhost",
"port" => 6802
)
)
)
}
}