Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

OpenClaw VPS Self-Managed Architecture

Self-managed OpenClaw VPS deployment with gateway, workspace, firewall/auth layer, and commercial LLM provider access from any device.

Full FlowZap Code

User { # User (Any Device)
n1: circle label:"Start"
n2: rectangle label:"Send command via Telegram"
n1.handle(right) -> n2.handle(left)
n2.handle(bottom) -> VPS.n3.handle(top) [label="Internet / SSH Tunnel"]
}
VPS { # VPS (DigitalOcean / Hetzner)
n3: rectangle label:"OpenClaw Gateway"
n4: rectangle label:"Workspace + State"
n5: rectangle label:"Firewall + Auth"
n3.handle(right) -> n4.handle(left)
n3.handle(bottom) -> n5.handle(top)
n3.handle(bottom) -> LLM.n6.handle(top) [label="API Request"]
}
LLM { # Commercial LLM API
n6: rectangle label:"Claude / GPT / Gemini"
n7: rectangle label:"Generate response"
n6.handle(right) -> n7.handle(left)
n7.handle(top) -> VPS.n3.handle(bottom) [label="Response"]
}

Related templates

Microservices API Gateway Architecture

A microservices API gateway architecture diagram showing request routing, JWT authentication, rate limiting, service discovery, and response aggregation across distributed backend services. This template models the entry point for all client traffic in a microservices ecosystem, enforcing security policies before requests reach internal services. Ideal for platform engineers designing scalable API infrastructure with centralized cross-cutting concerns.

Back to all templates