How it helps your business
Key Benefits
- Universal Project Tool: One platform for Kanban, lists, and roadmaps.
- Data Sovereignty: Your projects, your data, hosted on your infrastructure.
- Mattermost Ready: Native integration with the leading open-source chat platform.
- Totally Free: No per-user licensing fees for the self-hosted version.
- Desktop Sibling: Work offline and sync when you're back online.
Production Architecture Overview
- Focalboard Server: The Go-based backend application.
- PostgreSQL / MySQL: The recommended relational database for data persistent.
- Nginx / Caddy: A reverse proxy to handle SSL/TLS and routing.
- Unified Binary: For smaller teams, Focalboard can run as a single, self-contained binary using SQLite (not recommended for large production teams).
How we deploy this for you
Security Hardened
Firewalls, SSL, and hardened kernels out of the box.
Performance Tuned
Optimized for speed with cache and DB fine-tuning.
Automated Backups
Daily off-site backups so you never lose your data.
Private Cloud
You own the server and the data. No middleman.
Implementation Blueprint
Prerequisites
sudo apt update && sudo apt upgrade -y
sudo apt install docker.io docker-compose -y
sudo systemctl enable docker
sudo systemctl start dockerDocker Compose Production Setup
version: '3'
services:
focalboard:
image: mattermost/focalboard:latest
ports:
- "8000:8000"
environment:
- FOCALBOARD_DB_TYPE=postgres
- FOCALBOARD_DB_CONNECTION=postgres://user:pass@db:5432/focalboard?sslmode=disable
depends_on:
- db
restart: always
db:
image: postgres:14-alpine
environment:
- POSTGRES_USER=user
- POSTGRES_PASSWORD=pass
- POSTGRES_DB=focalboard
volumes:
- pg_data:/var/lib/postgresql/data
restart: always
volumes:
pg_data:Kubernetes Production Deployment (Recommended)
# Deploy app and db as separate components
kubectl create deployment focalboard --image=mattermost/focalboard:latest
kubectl expose deployment focalboard --port=8000- High Availability: Scale your Focalboard pods to ensure that project data is always accessible.
- Secure Persistence: Use Kubernetes PersistentVolumeClaims to manage your PostgreSQL data and board attachments.
- Integrated Auth: Use Mattermost or your existing OIDC provider for secure, single sign-on access.
Scaling Strategy
- Database Performance: For large teams, optimize your PostgreSQL instance and monitor query performance on heavily searched boards.
- Resource Management: Ensure that the Focalboard binary has sufficient CPU and memory, especially when handling many concurrent users.
- Attachment Storage: Configure Focalboard to store file attachments on an S3-compatible provider for scalability.
- Caching: Leverage a reverse proxy to cache static assets and reduce the load on the Go server.
Backup & Safety
- Database Snapshots: Automate daily PostgreSQL backups and store them securely offsite.
- Volume Backups: Regularly backup the persistent volumes containing user-uploaded attachments.
- Security Updates: Monitor Focalboard's GitHub for updates and security patches.
- VPN Access: Keep your Focalboard instance behind an internal VPN or an authenticated zero-trust proxy (like Tailscale or Cloudflare Tunnel).
Includes Security & performance standards
Best place to host Focalboard
We recommend Hostinger for its reliability and low cost. It's the perfect home for your new apps, featuring easy setup and 24/7 support.
Get Started on HostingerCompare Similar Tools
Kubernetes
Kubernetes is a production-grade, open-source platform for automating deployment, scaling, and operations of application containers.
Supabase
Supabase is the leading open-source alternative to Firebase. It provides a full backend-as-a-service (BaaS) powered by PostgreSQL, including authentication, real-time subscriptions, and storage.