mirror of
https://github.com/stoatchat/self-hosted.git
synced 2026-03-02 22:47:01 +00:00
* chore: Use v0.11.1 for now as v0.11.x>1 contain emergency prod-only fix This commit was made without the use of generative AI. Signed-off-by: Jacob Schlecht <dadadah@echoha.us> * feat: add voice to the compose, caddyfile, and livekit config Web section of the compose is commented out for now Added section to readme about the name of the project changing This commit was made without the use of generative AI. Signed-off-by: Jacob Schlecht <dadadah@echoha.us> * chore: update many references to Revolt to reference Stoat Signed-off-by: Jacob Schlecht <dadadah@echoha.us> * feat: Add new dockerized web container This commit was made without the use of generative AI. Signed-off-by: Jacob Schlecht <dadadah@echoha.us> * feat: Confirm reconfiguration if Revolt.toml exists Also fix not outputing new env vars to .env.web This commit was made without the use of generative AI. Signed-off-by: Jacob Schlecht <dadadah@echoha.us> * feat: Add a migration script to make upgrading to voice easier This commit was made without the use of generative AI. Signed-off-by: Jacob Schlecht <dadadah@echoha.us> * fix: Use old referral code This commit was made without the use of generative AI. Signed-off-by: Jacob Schlecht <dadadah@echoha.us> --------- Signed-off-by: Jacob Schlecht <dadadah@echoha.us> Co-authored-by: Declan Chidlow <accounts@vale.rocks>
53 lines
955 B
Caddyfile
53 lines
955 B
Caddyfile
{$HOSTNAME} {
|
|
route /api* {
|
|
uri strip_prefix /api
|
|
reverse_proxy http://api:14702 {
|
|
header_down Location "^/" "/api/"
|
|
}
|
|
}
|
|
|
|
route /ws {
|
|
uri strip_prefix /ws
|
|
reverse_proxy http://events:14703 {
|
|
header_down Location "^/" "/ws/"
|
|
}
|
|
}
|
|
|
|
route /autumn* {
|
|
uri strip_prefix /autumn
|
|
reverse_proxy http://autumn:14704 {
|
|
header_down Location "^/" "/autumn/"
|
|
}
|
|
}
|
|
|
|
route /january* {
|
|
uri strip_prefix /january
|
|
reverse_proxy http://january:14705 {
|
|
header_down Location "^/" "/january/"
|
|
}
|
|
}
|
|
|
|
route /gifbox* {
|
|
uri strip_prefix /gifbox
|
|
reverse_proxy http://gifbox:14706 {
|
|
header_down Location "^/" "/gifbox/"
|
|
}
|
|
}
|
|
|
|
route /livekit* {
|
|
uri strip_prefix /livekit
|
|
reverse_proxy http://livekit:7880 {
|
|
header_down Location "^/" "/livekit/"
|
|
}
|
|
}
|
|
|
|
route /ingress* {
|
|
uri strip_prefix /ingress
|
|
reverse_proxy http://voice-ingress:8500 {
|
|
header_down Location "^/" "/ingress/"
|
|
}
|
|
}
|
|
|
|
reverse_proxy http://web:5000
|
|
}
|