Self Hosting
OneGlanse is built for private infrastructure and full data ownership.
Service Topology
landing(Next.js): public marketing site on127.0.0.1:3000web(Next.js): app + API on127.0.0.1:3001docs(Next.js): documentation on127.0.0.1:3002agent-worker: async provider execution workerredis: queue and coordination backenddb(Postgres): auth/workspace/transactional dataclickhouse: analytics and reporting datamigrate: one-shot schema migration job
Startup Dependencies
agent-workerdepends on healthyrediswebdepends on healthydb,redis,clickhouse, plus successfulmigratemigratedepends on healthydb
Networking Model
- Public ingress: Nginx only (
80/443) - App containers are loopback-bound (
127.0.0.1) and not internet-exposed - Data services are internal-only Docker networks
Security Baseline
- Use strong unique values for
BETTER_AUTH_SECRET,INTERNAL_CRON_SECRET, andREDIS_PASSWORD. - Restrict SSH and enforce key-based authentication.
- Keep egress controls for agent proxy traffic where required.
- Back up
db_data,clickhouse_data, andredis_datavolumes.