Guest User

Untitled

a guest
Mar 2nd, 2026
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. example.com {
  2. handle_path /.well-known/matrix/server {
  3. respond `{"m.server":"matrix.example.com:443"}`
  4. header Access-Control-Allow-Origin *
  5. header Content-Type application/json
  6. }
  7. handle_path /.well-known/matrix/client {
  8. respond `{"m.server":{"base_url":"https://matrix.example.com"},"m.homeserver":{"base_url":"https://matrix.example.com"},"org.matrix.msc3575.proxy":{"url":"https://matrix.example.com"},"org.matrix.msc4143.rtc_foci":[{"type":"livekit","livekit_service_url":"https://matrix-rtc.example.com/livekit/jwt"}]}`
  9. header Access-Control-Allow-Origin *
  10. header Content-Type application/json
  11. }
  12. }
  13. element.crimsoneers.com {
  14. reverse_proxy 172.0.0.6:80
  15. }
  16. matrix-rtc.crimsoneers.com {
  17. handle_path /livekit/jwt* {
  18. reverse_proxy 172.0.0.2:8081
  19. }
  20. handle_path /livekit/sfu* {
  21. reverse_proxy 172.0.0.5:7880
  22. }
  23. }
  24. matrix.crimsoneers.com, matrix.crimsoneers.com:8448 {
  25. reverse_proxy 172.0.0.4:6167
  26. }
Add Comment
Please, Sign In to add comment