thirdculture/etc/lighttpd/conf.d/up.thirdculture.top.conf

20 lines
485 B
Text
Raw Normal View History

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