secubox-openwrt/package/secubox/secubox-app-simplex/README.md
CyberMind-FR ccfb58124c docs: Add trilingual documentation (French and Chinese translations)
Add complete French (fr) and Chinese (zh) translations for all documentation:

- Root files: README, CHANGELOG, SECURITY, BETA-RELEASE
- docs/: All 16 core documentation files
- DOCS/: All 19 deep-dive documents including embedded/ and archive/
- package/secubox/: All 123+ package READMEs
- Misc: secubox-tools/, scripts/, EXAMPLES/, config-backups/, streamlit-apps/

Total: 346 translation files created

Each file includes language switcher links for easy navigation between
English, French, and Chinese versions.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-03-20 10:00:18 +01:00

59 lines
1.4 KiB
Markdown

English | [Francais](README.fr.md) | [中文](README.zh.md)
# SecuBox SimpleX Chat Server
Privacy-first messaging relay server running in an Alpine LXC container. Provides SMP (SimpleX Messaging Protocol) and XFTP (file transfer) services with end-to-end encryption and post-quantum cryptography support.
## Installation
```bash
opkg install secubox-app-simplex
```
## Configuration
UCI config file: `/etc/config/simplex`
```bash
uci set simplex.main.enabled='1'
uci set simplex.main.smp_port='5223'
uci set simplex.main.xftp_port='443'
uci set simplex.main.domain='chat.example.com'
uci commit simplex
```
## Usage
```bash
simplexctl start # Start SimpleX server (LXC)
simplexctl stop # Stop SimpleX server
simplexctl status # Show service status
simplexctl logs # View server logs
simplexctl address # Show server address for clients
simplexctl update # Update SimpleX binaries
```
## HAProxy Integration
Drop-in HAProxy config is provided at `/usr/lib/secubox/haproxy.d/simplex.cfg` for TLS termination and routing through the SecuBox HAProxy instance.
## Features
- SMP relay for SimpleX Chat messaging
- XFTP relay for encrypted file transfers
- End-to-end encryption with post-quantum algorithms
- No user identifiers or metadata collection
- Alpine LXC container isolation
## Dependencies
- `lxc`
- `lxc-common`
- `wget`
- `openssl-util`
- `tar`
## License
Apache-2.0