15 lines
212 B
Plaintext
15 lines
212 B
Plaintext
server.modules += ("mod_proxy")
|
|
$HTTP["host"] == "domain.tld" {
|
|
$HTTP["url"] =~ "^/dijkstra/" {
|
|
proxy.server = ( "" =>
|
|
( "internal" =>
|
|
(
|
|
"host" => "localhost",
|
|
"port" => 6802
|
|
)
|
|
)
|
|
)
|
|
}
|
|
}
|
|
|