Setup Guide
Gnomes Manager runs two ways. Pick the one that matches how you bot β most people running multiple servers will want the second.
β Local setup β one PC
This is the default and needs no configuration. Best if you run your accounts on a single computer.
Install
Download the Windows installer from the home page and run it.
Sign in & subscribe
Create your account in the app, pick a plan, and pay in crypto (your first month is 50% off). This unlocks launching.
Import & launch
Paste your accounts and proxies, then hit launch. The dashboard and the live mosaic are right there on your PC.
β‘ Control hub β manage many servers
If you run bots on several servers across different networks, host the control hub on a small VPS. Every agent β and your browser β connects to that one hub, so you see and control everything from a single dashboard, from anywhere.
Get a VPS and point a subdomain at it
Spin up an Ubuntu/Debian VPS. In your domain's DNS, add an
Arecord likehub.yourdomain.com β your-VPS-IP.Install Caddy (automatic HTTPS)
Caddy gives your hub a real HTTPS certificate with zero fuss:
sudo apt update && sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https curl curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list sudo apt update && sudo apt install -y caddyUpload the hub and run setup
Put the hub files in
/opt/gnomes-master, then run the one-shot setup β it installs Node, dependencies, generates a strong access token, sets up the database, and starts the hub as a background service:cd /opt/gnomes-master && sudo bash setup.shWrite down the AGENT_TOKEN it prints β you'll use it on every agent.
Turn on HTTPS
Edit the included
Caddyfile.exampleto use your subdomain, then:sudo cp Caddyfile.example /etc/caddy/Caddyfile sudo systemctl reload caddyConnect your agents
On each bot machine, open Gnomes Manager, choose βConnect to a remote hubβ, and enter your hub URL (
https://hub.yourdomain.com) and the token from step 3. The agent links up and its clients appear on the hub.Open your dashboard from anywhere
Go to
https://hub.yourdomain.comin any browser β desktop or phone β sign in, and you'll see every server's accounts and the live mosaic in one place.
Is it safe to put online?
Yes β and the app keeps you safe by default rather than leaving it to you:
- Strong access required. The hub refuses to start if it's public without a strong token, so it can never go live wide-open.
- HTTPS enforced. Logins use secure cookies and Caddy encrypts all traffic β nothing is sent in the clear.
- Login-gated. Only your signed-in account can reach the dashboard; agents authenticate with the shared token. Brute-force attempts are rate-limited.
- Credentials encrypted at rest. Account passwords and 2FA secrets are AES-256 encrypted on the hub. Back up the
data/folder β it holds the encryption key; losing it means stored credentials can't be recovered.
Need a hand?
Email support@gnomesmanager.com and we'll walk you through it.