pre release
This commit is contained in:
parent
31022358ed
commit
79de710800
40 changed files with 848 additions and 20 deletions
|
@ -14,7 +14,11 @@ $HTTP["host"] =~ "^files\.thirdculture\.top$" {
|
|||
"" => (
|
||||
(
|
||||
"host" => "gossa",
|
||||
"port" => 8001
|
||||
"port" => 8001,
|
||||
"headers" => (
|
||||
"Host" => "$HTTP_HOST",
|
||||
"X-Forwarded-For" => "$REMOTE_ADDR"
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
19
etc/lighttpd/conf.d/up.thirdculture.top.conf
Normal file
19
etc/lighttpd/conf.d/up.thirdculture.top.conf
Normal 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"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue