thirdculture/etc/lighttpd/conf.d/up.thirdculture.top.conf
2024-11-13 01:05:42 -05:00

19 lines
485 B
Text

$HTTP["host"] =~ "up\.thirdculture\.top" {
server.document-root = "/var/www/localhost/htdocs"
proxy.server = (
"" => (
"localhost" => (
"host" => "transfer",
"port" => 8080,
"path" => "/web",
"headers" => (
"Host" => "$HTTP_HOST",
"X-Forwarded-For" => "$REMOTE_ADDR"
)
)
)
)
proxy.balance = "round-robin"
}