feat: add conduit-server bundle for Matrix homeserver#3
Merged
Conversation
Conduit is a lightweight Matrix homeserver written in Rust.
Runs in Docker with minimal resources (~70MB RAM).
Features:
- Systemd service with docker container
- Configurable server_name, port, federation, registration
- Data persisted to /opt/conduit
- Automatic iptables rules
Defaults:
- Port: 8448
- Federation: disabled
- Registration: enabled
- Version: latest
Usage:
'conduit-server': {
'enabled': True,
'server_name': 'matrix.benjamin-borbe.de',
}
bborbe
approved these changes
Feb 11, 2026
- Enable Conduit Matrix server on matrix.benjamin-borbe.de - Add nginx reverse proxy with TLS (Let's Encrypt) - Proxy requests to local Conduit on port 8448
Conduit now requires CONDUIT_CONFIG pointing to a toml file. The old CONDUIT_SERVER_NAME etc env vars no longer work. - Add conduit.toml template - Mount config file into container - Set CONDUIT_CONFIG=/etc/conduit.toml
Security updates in v0.10.10 and v0.10.11 fix critical vulnerabilities. Also default allow_registration to false for safety.
Adds nginx vhost for Matrix well-known endpoints on the base domain, enabling @user:benjamin-borbe.de style addresses. New config options: - well_known_base_domain: domain for delegation (e.g. benjamin-borbe.de) - well_known_ip: IP to bind nginx vhost (default 0.0.0.0) The vhost serves: - /.well-known/matrix/server - /.well-known/matrix/client - / returns 404 for everything else
bborbe
approved these changes
Feb 11, 2026
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Conduit is a lightweight Matrix homeserver written in Rust (~70MB RAM).
Features
Defaults
Usage
Resources