User Tools

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
services:conduwuit [2025/02/03 09:16] willyservices:conduwuit [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1
Line 1: Line 1:
-====== Conduwuit ====== 
- 
- 
-[[https://conduwuit.puppyirl.gay/|Conduwuit]] is a Matrix server written in RUST. [[https://matrix.org|Matrix]] is an open network for secure, decentralised communication. It is a specification which is in turn implemented by many servers and clients, and you can self-host your server as well. This is a new, well supported, lightweight implementation of a Matrix server.  
- 
-I will show you also how to install Element Web app which is a nice companion for web access everywhere. 
- 
-===== Installation of Conduwuit server ===== 
- 
-Installation instructions: [[https://conduwuit.puppyirl.gay/deploying/generic.html|here]]. While there is a docker approach, it is so simple to install on bare-metal that i preferred this approach to the container one. Actuall accessing the conduwuit command-line admin console is a pain with container, while it's so easy from the prebuilt-binary. 
- 
-Create user and required folders: 
-<code bash> 
-seradd -d /data/daemons/conduwuit conduwuit 
-mkdir -p /data/conduwuit/db 
-chown conduwuit:conduwuit /data/conduwuit -R 
-</code> 
- 
-Download the correct executable from [[https://github.com/girlbossceo/conduwuit/releases|GitHUB releases page]]. You should pick the one for your architecture. For example, for Linux 64bit would be **static-x86_64-unknown-linux-musl**: 
-<code bash> 
-su - conduwuit 
-mkdir bin 
-cd bin 
-wget https://github.com/girlbossceo/conduwuit/releases/download/<< version >>/static-x86_64-unknown-linux-musl 
-</code> 
- 
-===== Installation of Element Web app ===== 
- 
-Element Web app is a great web based UI for Matrix, that you can pair to your instance. 
- 
-Again installing bare-metal is the way to go. See [[https://github.com/element-hq/element-web|here]]. 
- 
-Download latest release tarball from [[https://github.com/element-hq/element-web/releases|here]] and decompress it: 
-<code bash> 
-su - conduwuit 
-wget https://github.com/element-hq/element-web/releases/<< version >> /element-<< version >>.tar.gz 
-tar xvf element-<< version >>.tar.gz 
-ln -s element-<< version >> element-web 
-</code> 
- 
- 
-===== Configuration of Conduwuit server ===== 
- 
-The official Conduwuit configuration documentation can be found [[https://conduwuit.puppyirl.gay/configuration.html|here]]. 
- 
-Now, you cannot start Conduwuit withour a proper configuration file. I suggest you to put it under **/data/conduwuit/conduwuit.toml**, and here is an example to start from: 
-<file /data/conduwuit/conduwuit.toml> 
-[global] 
-server_name = "chat.mydomain.com" 
-address = ["127.0.0.1", "::1"] 
-port = 6167 
-database_path = "/data/conduwuit/db" 
-new_user_displayname_suffix = "-|" 
-allow_check_for_updates = false 
-max_request_size = 20971520 # this should match NGINX max request size 
-#log = "info" 
-#log_colors = true 
-#emergency_password = "" 
- 
-[global.well_known] 
-client = "https://chat.mydomain.com" 
-server = "chat.mydomain.com:443" 
-</file> 
- 
-You are now ready for testing your installation. 
- 
-===== Configuration of Element Web App ===== 
- 
-Rename the file called **config.sample.json** to **config.json** inside the //element-<< version >>// folder and edit accordingly, and to be sure to backup it properly, i suggest to move it to **/data/conduwuit**: 
-<code bash> 
-cd /data/daemons/conduwuit/element-web 
-cp config.sample.json /data/conduwuit/element-config.json 
-ln -s /data/conduwuit/element-config.json config.json 
-</code> 
- 
-At the very least perform the following edits: 
-<code> 
-    "default_server_config": { 
-        "m.homeserver": { 
-            "base_url": "https://chat.gardiol.org", 
-            "server_name": "chat.gardiol.org" 
-        }, 
-    "disable_custom_urls": true, 
-    "disable_guests": true, 
-</code> 
- 
-at the beginning of the file. I suggest to disable both custom URLs and guests, to avoid your web instance to be used too openly. Please note that this **does not mean** that your instance will be used: Element X is a javascript app that works in the browser of the use anyway. 
- 
- 
-===== Manual startup ===== 
- 
-to run Conduwuit server, run the following command as **conduwuit** user: 
-<code bash> 
-/data/daemons/bin/static-x86_64-unknown-linux-musl -c /data/conduwuit/conduwuit.toml 
-</code> 
- 
-Of course, replace the proper paths and filenames with your setup. 
- 
-Running manually is good because you can easily access the admin console by typing **CTRL+C** from the terminal. You might want to take this opportunity to create your first user, and make it an admin too. 
- 
-===== Testing ===== 
- 
-Call directly this endpoint: 
-<code bash> 
-curl https://chat.mydomain.com/_conduwuit/server_version 
-{"name":"Conduwuit","version":"0.5.0 (e5049ca)"} 
-</code> 
- 
-Check federation and Matrix operability, open the following URL: 
-<code> 
-https://federationtester.matrix.org/#chat.mydomain.com 
-</code> 
- 
- 
-===== Reverse proxy ===== 
- 
-A Matrix server must be hosted on a dedicated subdomain. Please see my [[selfhost:nginx|NGINX]] reverse proxy page for more information about the followint configuration. 
- 
-<file - chat.conf> 
-server { 
-        server_name chat.mydomain.com; 
-        listen 8443 ssl; # external access 
-        listen 443 ssl;  # internal access 
- 
-        access_log /var/log/nginx/chat.mydomain.com_access_log main; 
-        error_log /var/log/nginx/chat.mydomain.com_error_log info; 
- 
-        location / { 
-                root /data/daemons/conduwuit/element-web; 
-        } 
- 
-        location ~ ^(/_matrix|/_synapse/client) { 
-                add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS, PATCH, HEAD'; 
-                proxy_pass http://127.0.0.1:6167; 
-                #proxy_pass http://127.0.0.1:6167$request_uri; 
-                proxy_set_header X-Forwarded-For $remote_addr; 
-                proxy_set_header X-Forwarded-Proto $scheme; 
-                proxy_set_header Host $host; 
-                proxy_buffering off; 
-                client_max_body_size 30M; 
-                proxy_read_timeout 10m; 
-                proxy_http_version 1.1; 
-        } 
- 
-        location /.well-known/matrix/server { 
-                return 200 '{"m.server": "chat.mydomain.com:443"}'; 
-                types { } default_type "application/json; charset=utf-8"; 
-        } 
- 
-        location /.well-known/matrix/client { 
-                return 200 '{"m.homeserver": {"base_url": "https://chat.mydomain.com"},"org.matrix.msc3575.proxy": {"url": "https://chat.mydomain.com"}}'; 
-                types { } default_type "application/json; charset=utf-8"; 
-                add_header "Access-Control-Allow-Origin" *; 
-        } 
-} 
-</file> 
- 
- 
- 
- 
-===== Adding users ===== 
- 
-From the Contuwuit admin console, which can be accessed by running the conduwuit binary in a terminal then hit **CTRL+C**, you can do a lot of admin stuff, including creating new users.  
- 
-To create a user: 
-<code> 
-uwu> admin users create-user myuser mypassword 
-</code> 
- 
-To make a user an admin: 
-<code> 
-uwu> admin users make-user-admin myuser 
-</code> 
- 
-To change a user password: 
-<code> 
-uwu> admin users reset-password myuser mynewpassword 
-</code> 
- 
-You **must** create at least one user and make it admin! 
- 
-You can run any admin command later on directly in your favorite Matrix client in the admin chat. You might need the terminal only if you accidentally lock your user out of the instance. 
- 
-===== Autostart ===== 
- 
-Since i use OpenRC, simply drop the following script to /etc/init.d: 
-<file - /etc/init.d/conduwuit> 
-#!/sbin/openrc-run 
-# Copyright 2025 Gentoo Authors 
-# Distributed under the terms of the GNU General Public License v2 
- 
-name="conduwuit daemon" 
-description="Conduwuit Matrix server" 
-pidfile="/run/conduwuit.pid" 
-command_background=true 
-command="/data/daemons/conduwuit/bin/static-x86_64-linux-musl" 
-command_args="-c /data/conduwuit/conduwuit.toml" 
-command_user="conduwuit:conduwuit" 
- 
-depend() { 
-        need net 
-} 
-</file> 
- 
-Make it executable and add to the proper runlevel: 
-<code bash> 
-chmod +x /etc/init.d/conduwuit 
-rc-update add conduwuit default 
-</code> 
- 
-If you use the telegram bridge described below, also add the following: 
-<file - /etc/init.d/conduwuit-telegram> 
-#!/sbin/openrc-run 
-# Copyright 2025 Gentoo Authors 
-# Distributed under the terms of the GNU General Public License v2 
- 
-name="conduwuit telegram bridge" 
-description="Conduwuit Telegram Matrix Bridge" 
-pidfile="/run/conduwuit-telegram.pid" 
-command_background=true 
-command="/data/daemons/conduwuit/mautrix-telegram/bin/python" 
-command_args="-m mautrix_telegram" 
-command_user="conduwuit:conduwuit" 
- 
-start_pre() { 
-        cd /data/daemons/conduwuit/mautrix-telegram 
-} 
- 
-depend() { 
-        need net 
-} 
-</file> 
- 
-Make it executable and add to the proper runlevel: 
-<code bash> 
-chmod +x /etc/init.d/conduwuit-telegram 
-rc-update add conduwuit-telegram default 
-</code> 
- 
-===== Installing the Telegram Bridge ===== 
- 
-The Mautrix Telegram bridge is currently the best (only?) option. More info  
-[[https://docs.mau.fi/bridges/python/setup.html?bridge=telegram|here]]. 
- 
-Create subfolder and Python venv inside (see [[gentoo:pip|PIP]]): 
-<code bash> 
-su - conduwuit 
-mkdir mautrix-telegram 
-cd mautrix-telegram 
-# Enable PIP like in the link above 
-# - create ~/.config/pip/pip.conf 
-# - add ~/.local/bin to the .bashrc 
-python -m venv . # Note the dot at the end! 
-source ./bin/activate 
-# Now flip include-system-site-packages = true in pyvenv.cfg 
-# Install: 
-pip install --upgrade mautrix-telegram[all] 
-</code> 
- 
-You need to create API keys to connect to Telegram. Go to [[https://my.telegram.org/auth?to=apps|this page]] and  
-Grab the example config file [[https://raw.githubusercontent.com/mautrix/telegram/refs/heads/master/mautrix_telegram/example-config.yaml|here]], save it as **config.yaml** in the /data/conduwuit/ folder and create a link to the //mautrix-telegram// folder and customize it to your needs: 
-<code bash> 
-wget -O /data/conduwuit/mautrix-telegram-config.yaml 
-ln -d /data/conduwuit/mautrix-telegram-config.yaml /data/daemons/conduwuit/mautrix-telegram/config.yaml 
-</code> 
- 
-This file is huge, here are the most relevant changes needed: 
-<file - config.yaml> 
-    address: https://chat.mydomain.com 
-    domain: chat.mydomain.com 
-    verify_ssl: true 
-    database: sqlite:/data/conduwuit/mautrix-telegram.db # place the database into the /data/conduwuit folder 
-telegram: 
-    # Get your own API keys at https://my.telegram.org/apps 
-    api_id: << put your id here >> 
-    api_hash: << put your hash >> 
-    # (Optional) Create your own bot at https://t.me/BotFather 
-    bot_token: disabled 
-permissions: 
-  "*": "relaybot"                      # non-local users can only see messages 
-  "chat.mydomain.com": "full"          # full access to all local users 
-  "@myself:chat.mydomain.com": "admin" # who can admin the bot 
-</file> 
-More details on configuration can be found [[https://docs.mau.fi/bridges/general/initial-config.html|here]]. 
- 
-I choose to use SQLite as database because i only have a few users and don't want to spin a PostreSQL instance for that. 
- 
-At this point you need to register the bridge: 
-<code bash> 
-python -m mautrix_telegram -g 
-</code> 
- 
-This step will create a **registration.yaml** file that you need to perform the registration of the bridge as an appservice in Conduwuit. Conduwuit is different from Synapse (the most common Matrix server) because the appservice must be registered from the admin chat with the following command: 
-<code> 
-!admin appservices register << shift+enter >> 
-```  << shift+enter >> 
-id: telegram 
-as_token: << autogenrated >> 
-hs_token: << autogenrated >> 
-namespaces: 
-    users: 
-    - exclusive: true 
-      regex: '@telegram_.*:chat\.mydomain\.com' 
-    - exclusive: true 
-      regex: '@telegrambot:chat\.mydomain\.com' 
-    aliases: 
-    - exclusive: true 
-      regex: \#telegram_.*:chat\.mydomain\.com 
-url: http://localhost:29317 
-sender_localpart: << autogenrated >> 
-rate_limited: false 
-de.sorunome.msc2409.push_ephemeral: true 
-push_ephemeral: true 
-``` << enter >> 
-</code> 
- 
-When you see **<< shift enter >>** you need to press those two keys in order to create a new line in the same command. The three **```** (backthicks) are the markdown token to create a code block. 
-The **<< autogenrated >>** are secret strings found in the //registration.yaml// file. 
- 
-The chat should reply with a message like: 
-<code> 
-Appservice registered with ID: telegram 
-</code> 
- 
-More details on registering the appservice can be found [[https://docs.mau.fi/bridges/general/registering-appservices.html|here]]. 
- 
-You need to create the **telegrambot** user, again from the admin chat: 
-<code> 
-!admin users create-user telegrambot 
-</code> 
- 
-Good! Now you can run the bridge: 
-<code bash> 
-python -m mautrix_telegram 
-</code> 
- 
-If all is well, your bridge should be up and running now. 
- 
-To login into telegram you need to: 
-  * Start a chat with telegrambot:chat.mydomain.com 
-  * type "login" 
-  * when prompted, type your telegram registered phone number with country code 
-  * when prompted, type the code you received in telegram to authorize the login 
-  * when prompted, type your 2FA password (if enabled in telegram) 
- 
-You will start seeing your telegram chats appear in Matrix now! It takes time, even hours, and also most chats will only appear the first time the other person messages you. 
- 
-**Note:** Telegram does not allow registration from third party clients, so to register a **new** telegram account, you must use Telegram official app. 
- 
-General documentation on the Telegram bot can be found [[https://docs.mau.fi/bridges/python/telegram/index.html|here]]. 
- 
-To manage animated sticker [[https://github.com/sot-tech/LottieConverter|here]] 
- 
  

This website uses technical cookies only. No information is shared with anybody or used in any way but provide the website in your browser.

More information