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 + ) + ) + ) + } +} +