pre release

This commit is contained in:
q 2024-11-12 16:45:42 -05:00
parent 31022358ed
commit 79de710800
40 changed files with 848 additions and 20 deletions

View file

@ -14,7 +14,11 @@ $HTTP["host"] =~ "^files\.thirdculture\.top$" {
"" => (
(
"host" => "gossa",
"port" => 8001
"port" => 8001,
"headers" => (
"Host" => "$HTTP_HOST",
"X-Forwarded-For" => "$REMOTE_ADDR"
)
)
)
)

View file

@ -0,0 +1,19 @@
$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"
}