> For the complete documentation index, see [llms.txt](https://tchat.tect.host/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tchat.tect.host/chat-bridge/configuration.md).

# Configuration

## General

```yaml
modules:
  # This module allows you to create channels between worlds
  #
  # Chat bridge module loaded from modules/chatbridge.yml
  chat-bridge: true
```

* modules.chat-bridge: Enable/disable the module.

***

## Module

Bridges are “groups” of worlds where players can see messages sent between them. For example, the default bridge allows you to see messages only between the “world” and ‘world\_nether’ worlds; players in “world\_the\_end” or any other world can see messages sent between them (if there are no other bridges), but they won’t be able to see messages from players in “world” and “world\_nether.” Players in either of those two worlds will be able to see messages between themselves.

```yaml
bridges:
  bridge1:
    - "world"
    - "world_nether"
```
