Add lighttpd conf file for https proxying
This commit is contained in:
parent
15945c08f7
commit
d7d59322c5
14
misc/lighttpd.conf
Normal file
14
misc/lighttpd.conf
Normal file
@ -0,0 +1,14 @@
|
||||
server.modules += ("mod_proxy")
|
||||
$HTTP["host"] == "domain.tld" {
|
||||
$HTTP["url"] =~ "^/dijkstra/" {
|
||||
proxy.server = ( "" =>
|
||||
( "internal" =>
|
||||
(
|
||||
"host" => "localhost",
|
||||
"port" => 6802
|
||||
)
|
||||
)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user