Serving Your Help Page Under Your Own Domain
Reverse-proxy Umiplex's help page so it's served from a path on your own site instead of a third-party URL.
By default, your agent's Help Page is served from app.umiplex.com/chat/page/<agentId>.
You can instead serve it from a path on your own domain — for example
www.yoursite.com/help — by proxying requests to that path through to Umiplex,
rather than redirecting.
This is a reverse proxy, not a redirect. The visitor's browser URL bar stays on your domain the whole time; your server (or edge platform) fetches the Umiplex page behind the scenes and returns it as if it were your own.
How it works
- Pick a path on your site to host the help page (e.g.
/help). - Configure your server, framework, or CDN to rewrite requests for that path
(and everything under it) to
https://app.umiplex.com/chat/page/<agentId>, preserving the rest of the URL. - Umiplex's Help Page is itself a normal web page, so no special headers or authentication are required for this — a plain HTTP-level rewrite is enough.
Framework-specific guides
If your framework or platform isn't listed yet, look for a "rewrites," "reverse proxy," or "URL rewrite" feature — most frameworks and CDNs (Nginx, Cloudflare Workers, Vercel, Netlify, Apache) support this natively under one of those names. The destination URL is always the same:
https://app.umiplex.com/chat/page/<agentId>Replace <agentId> with your agent's ID, found in your agent's Playground URL.