Start Your Free Trial
Experience the power of Miuda's AI-Native PBX solutions. Get a 7-day free trial - no credit card required.
What you'll get
7-Day Trial
Full access to all features
No Credit Card
Start instantly, risk-free
Quick Setup
Up and running in minutes
Or sign up with
Trial License Ready
Copy your key and start using Miuda immediately
License Key
Expires
Active
✓ License key copied to clipboard
Trial Already Used
You have already activated a free trial. View your existing licenses or purchase a plan.
Quick Start
Run RustPBX locally with Docker to experience it immediately.
# Pull community image
docker pull ghcr.io/restsend/rustpbx:latest
# Create config.toml
cat << 'EOF' > config.toml
http_addr = "0.0.0.0:8080"
database_url = "sqlite://rustpbx.sqlite3"
[console]
base_path = "/console"
allow_registration = false
[proxy]
addr = "0.0.0.0"
udp_port = 5060
modules = ["auth", "registrar", "call"]
[[proxy.user_backends]]
type = "memory"
users = [{ username = "1001", password = "password" }]
[sipflow]
type = "local"
root = "./config/sipflow"
subdirs = "hourly"
EOF
http_addr = "0.0.0.0:8080"
database_url = "sqlite://rustpbx.sqlite3"
[console]
base_path = "/console"
allow_registration = false
[proxy]
addr = "0.0.0.0"
udp_port = 5060
modules = ["auth", "registrar", "call"]
[[proxy.user_backends]]
type = "memory"
users = [{ username = "1001", password = "password" }]
[sipflow]
type = "local"
root = "./config/sipflow"
subdirs = "hourly"
EOF
# Start with host networking
docker run -d --name rustpbx --net host \
-v $(pwd)/config.toml:/app/config.toml \
-v $(pwd)/config:/app/config \
docker.cnb.cool/miuda.ai/rustpbx:latest --conf /app/config.toml
-v $(pwd)/config.toml:/app/config.toml \
-v $(pwd)/config:/app/config \
docker.cnb.cool/miuda.ai/rustpbx:latest --conf /app/config.toml
# Create first admin
docker exec rustpbx /app/rustpbx --conf /app/config.toml \
--super-username admin --super-password changeme
--super-username admin --super-password changeme
Web console: http://localhost:8080/console/
SIP proxy: udp://localhost:5060