balzack / databag

fast & lightweight self-hosted messenger
Apache License 2.0
789 stars 44 forks source link
android chat-application decentralized dweb end-to-end-encryption fdroid federated golang ios messenger openwrt raspberry-pi raspberry-pi-zero react-native reactjs self-sovereign-identity selfhosted video-chat webrtc

contribute.design

Databag

A federated messenger for self-hosting

-> Design Overview <-


  

Mobile and Browser App Screens


Databag is designed for efficiency, consuming minimal hosting resources. Notable features include:


The app is available on fdroid as well as the google and apple stores. You can test out the project here, but don't post anything important as this server is regularly wiped. Feedback on the UI/UX, bugs or features is greatly appreciated.

Installation

To use databag, you will need a DNS name pointing to your node with a certificate. You can deploy a node manually, but you will have a much easier time using a container service. Containers for arm64 and amd64 are available here.

Docker Compose Command

From the net/container sub directory:

Example with Portainer and Nginx Proxy Manager

From Portainer:

From Nginx Proxy Manager:

Nginx Proxy config ➡️ Click to expand ⬅️ ``` server { server_name your.site.tld; location / { proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header Host $host; proxy_pass http://127.0.0.1:7000; client_max_body_size 0; proxy_max_temp_file_size 0; } listen 443 ssl http2; ssl_certificate /etc/letsencrypt/live/your.site.tld/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/your.site.tld/privkey.pem; include /etc/letsencrypt/options-ssl-nginx.conf; ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; add_header Strict-Transport-Security "max-age=0"; } server { if ($host = your.site.tld) { return 301 https://$host$request_uri; } listen 80; server_name your.site.tld; return 404; } ```

From Your Browser:

Other installation options

Install without a container on a Raspberry Pi Zero here.

Install without a container in AWS here.

Integrate Databag in an OpenWrt firmware here.

1-click installs in CapRover, CasaOS, Unraid, Runtipi, Kubero, Umbrel

Audio and Video Calls

Databag provides audio and video calling and relies on a STUN/TURN relay server for NAT traversal. Testing was done with both coturn and cloudflare and should work with any implementation. Instructions for installing a coturn server are provided here.

If you want to enable audio and video calls, you should setup your own relay server or use the cloudflare turn service. For testing purposes you can however use the demo relay server configuration. In the admin configuration modal, set:

Roadmap

Please add any missing features; here is the current backlog. Features are prioritized based on interest from the community.