Unified reverse proxy and fleet management landing page for CryptoLabs products. This is the central entry point that manages authentication and routing for all CryptoLabs services.
┌─────────────────────────────────┐
│ CryptoLabs Proxy │
│ (Landing Page & Auth) │
│ │
User → HTTPS ───►│ ┌─────────────────────────┐ │
│ │ Unified Authentication │ │
│ └─────────────────────────┘ │
│ │ │
└──────────────┼──────────────────┘
│
┌────────────────────┼────────────────────┐
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ /ipmi/ │ │ /dc/ │ │/grafana/ │
│ IPMI │ │ DC │ │ Grafana │
│ Monitor │ │ Overview │ │ │
└──────────┘ └──────────┘ └──────────┘
- cryptolabs-watchtower - Auto-updates cryptolabs-proxy (primary) and other labeled containers (dc-overview, ipmi-monitor, etc.)
- Fleet Management Dashboard - Landing page showing all CryptoLabs services
- Unified Authentication - Single login for all services
- Site Name Branding - Customize landing page with your datacenter name
- Auto-Detection - Automatically detects running services via Docker
- Health Checks - Real-time health status for all containers
- Cross-Promotion - Promotes other CryptoLabs products when not installed
- SSL Support - Let's Encrypt and self-signed certificate support
- Subpath Routing - Route to services via
/ipmi/,/dc/,/grafana/, etc.
| Service | Path | Description |
|---|---|---|
| IPMI Monitor | /ipmi/ |
Server hardware monitoring |
| DC Overview | /dc/ |
Datacenter overview dashboard |
| Grafana | /grafana/ |
Metrics visualization |
| Prometheus | /prometheus/ |
Metrics collection (with auth) |
The easiest way to deploy is through DC Overview or IPMI Monitor quickstart, which automatically sets up cryptolabs-proxy:
# Install from dev branch
pip install git+https://github.com/cryptolabsza/dc-overview.git@dev --break-system-packages
# Run quickstart with config file
sudo dc-overview quickstart -c /path/to/config.yaml -y# Install from dev branch
pip install git+https://github.com/cryptolabsza/ipmi-monitor.git@dev --break-system-packages
# Run quickstart with config file
sudo ipmi-monitor quickstart -c /path/to/config.yaml -yapt install pipx -y && pipx ensurepath
source ~/.bashrc
pipx install cryptolabs-proxy
sudo cryptolabs-proxy setupAuthentication credentials are configured via environment variables or through the quickstart config file:
| Variable | Description | Default |
|---|---|---|
FLEET_ADMIN_USER |
Admin username | admin |
FLEET_ADMIN_PASS |
Admin password | Required |
SITE_NAME |
Site name for landing page branding | DC Overview |
AUTH_SECRET_KEY |
Token signing key | Auto-generated |
AUTH_DATA_DIR |
Auth data directory | /data/auth |
Important: You must set FLEET_ADMIN_PASS - there is no default password.
When using the quickstart config file, set these in your YAML:
site_name: My Datacenter # Appears in landing page title
fleet_admin_user: admin
fleet_admin_pass: YOUR_ADMIN_PASSWORDdocker run -d \
--name cryptolabs-proxy \
-p 80:80 -p 443:443 \
-e FLEET_ADMIN_USER=admin \
-e FLEET_ADMIN_PASS=YOUR_ADMIN_PASSWORD \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
-v cryptolabs_ssl:/etc/nginx/ssl \
-v cryptolabs_auth:/data/auth \
ghcr.io/cryptolabsza/cryptolabs-proxy:latestConfig files are stored in /etc/cryptolabs-proxy/:
/etc/cryptolabs-proxy/
├── nginx.conf # Nginx configuration
├── services.yaml # Registered services
└── ssl/ # SSL certificates
The image ships a bootstrap Nginx configuration. Service lifecycle commands
regenerate the configuration above and require it to be mounted at
/etc/nginx/nginx.conf in the running proxy container. This is how optional
Vast Price Manager routing is enabled and removed; the CLI refuses to claim a
route change when the container is still using the bundled configuration.
The bootstrap configuration intentionally contains no Vast Price Manager route.
Before an installer enables or disables VPM, it must first create the registry
configuration, render /etc/cryptolabs-proxy/nginx.conf, bind-mount that file
as /etc/nginx/nginx.conf, and verify the proxy is using it. The subsequent
cryptolabs-proxy register or unregister command then validates and reloads
that mounted configuration atomically with the registry update.
Do not use the generic CLI alone to migrate a proxy that already runs a custom
unmounted nginx.conf: it regenerates the full configuration. Use the reviewed
scripts/vpm-custom-config-migrate.py helper first. Its read-only plan mode
derives a migration ID from the source container and config hash. Its explicit
apply stores root-only backups, mounts a byte-preserved custom baseline with
only the canonical managed blocks added, and can perform a proxy-only
rollback. Custom-config mode then permits only normal VPM
register/unregister; it rejects changes to every other service. Its managed
Fleet auth deny block remains installed in every HTTP server block after VPM is unregistered, so the
always-running internal VPM session and reauthentication endpoints cannot fall
through a preserved public /auth/ route. Rollback restores the
original stored baseline exactly.
Before a new Vast Price Manager route can be added, the local Vast.ai exporter
must be running and report at least one connected account. Complete setup at
/vastai/. Existing VPM installations remain available for maintenance if the
exporter later loses connectivity; they are never automatically disabled.
The proxy checks the exporter from inside its container using its internal management token, which must be provisioned by the exporter setup. It records only whether setup is ready and the count of connected accounts; API keys, account names, balances, and tokens are not returned.
When Vast Price Manager runs in Fleet mode, it uses the existing Fleet
fleet_session cookie and does not create a second VPM account or login. VPM
introspects the current Fleet session on the Docker network at
http://cryptolabs-proxy:8081/auth/vast-price-manager/session; the public
Nginx configuration explicitly returns 404 for that endpoint and its
reauthentication companion, including their trailing-slash variants.
The internal session response is limited to the current enabled Fleet admin's
username, role, and two purpose-separated HMAC values derived from the signed
cookie: a subject and a CSRF token. It never returns the cookie, password,
password hash, or signing key. The proxy rereads the user record for every
session, reauthentication, and VPM proxy authorization check, so a disabled,
deleted, demoted, or password-change-required account loses VPM access
immediately. Sensitive VPM confirmation calls
POST /auth/vast-price-manager/reauth internally with the Fleet password and
the returned CSRF token; it uses the normal Fleet password throttle.
User authentication data is stored in /data/auth/:
/data/auth/
├── users.json # User database (hashed passwords)
└── sessions/ # Active sessions
| Endpoint | Description |
|---|---|
GET / |
Fleet management landing page |
GET /api/health |
Health status of all services |
GET /api/services |
List of registered services |
POST /auth/login |
Authentication endpoint |
POST /auth/logout |
Logout endpoint |
Fleet Management provides seamless integration with DC Watchdog for uptime monitoring.
When a user clicks "Enable DC Watchdog" in the Fleet Management UI:
┌─────────────────────────────────────────────────────────────────────────────┐
│ First-Time Setup (No API Key) │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ 1. User clicks "Enable DC Watchdog" │
│ └── Fleet checks /data/auth/watchdog_api_key → empty │
│ │
│ 2. Redirect to WordPress signup: │
│ https://cryptolabs.co.za/dc-watchdog-signup/ │
│ ?redirect_uri=https://your-fleet.local/auth/watchdog/callback │
│ &source=fleet_management │
│ │
│ 3. User logs in / creates account on WordPress │
│ └── Clicks "Start Free Trial" │
│ └── WordPress generates API key (sk-ipmi-xxx) │
│ │
│ 4. WordPress redirects back with API key: │
│ https://your-fleet.local/auth/watchdog/callback?api_key=sk-ipmi-xxx │
│ │
│ 5. Fleet saves API key to /data/auth/watchdog_api_key │
│ │
│ 6. Auto-SSO to DC Watchdog dashboard (no manual login needed!) │
│ │
└─────────────────────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────────────────┐
│ Returning User (API Key Already Saved) │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ 1. User clicks "DC Watchdog" → API key loaded from storage │
│ 2. Fleet generates signed SSO token (using API key as secret) │
│ 3. Redirect to watchdog.cryptolabs.co.za/auth/sso │
│ 4. Instant dashboard access (no WordPress redirect!) │
│ │
└─────────────────────────────────────────────────────────────────────────────┘
| Endpoint | Description |
|---|---|
GET /auth/watchdog/sso |
Generate SSO URL and redirect to DC Watchdog |
GET /auth/watchdog/sso-url |
Get SSO URL as JSON (for JavaScript) |
GET /auth/watchdog/callback |
OAuth-style callback from WordPress signup |
GET /auth/watchdog/status |
Check DC Watchdog configuration status |
POST /auth/watchdog/deploy-agents |
Deploy agents to all servers via dc-overview |
| Variable | Description | Default |
|---|---|---|
WATCHDOG_API_KEY |
Pre-configured API key (optional, requires SSO verification) | (none) |
WATCHDOG_URL |
DC Watchdog server URL | https://watchdog.cryptolabs.co.za |
Even if WATCHDOG_API_KEY is provided via environment variable (e.g., from dc-overview quickstart), users must complete the SSO flow at least once to verify their account. This is enforced by:
- Persistent verification flag (
/data/auth/watchdog_verified) - Only set after SSO completion - Status endpoint checks - Returns
not_configureduntil verification is complete - UI enforcement - Shows "Link Account" button until verified
This ensures users explicitly authorize DC Watchdog integration, even when API keys are pre-provisioned.
Once DC Watchdog is enabled, you can deploy agents to all your servers:
- Click "Deploy Agents" in the Fleet Management UI
- Agents are installed via SSH to each configured server
- Agents send heartbeats every 30 seconds to DC Watchdog
- If a server stops responding, you get alerts via email, Telegram, push, or app
| Feature | Status |
|---|---|
| Fleet Management landing page | ✓ Complete |
| Unified authentication | ✓ Complete |
| DC Watchdog SSO integration | ✓ Complete |
| First-time SSO verification enforcement | ✓ Complete |
| "Cloud Service" label for DC Watchdog | ✓ Complete |
| Duplicate card prevention (System Updates) | ✓ Complete |
key_invalid state with "Re-link Account" prompt |
✓ Complete |
| Agent deployment status display | ✓ Complete |
| Feature | Status |
|---|---|
| Token renewal UI feedback | ⏳ Future |
| Subscription expiry warning banner | ⏳ Future |
| Project | Description |
|---|---|
| DC Overview | Full datacenter monitoring with GPU metrics, Prometheus & Grafana |
| IPMI Monitor | IPMI/BMC hardware monitoring, SEL logs, ECC tracking |
| DC Exporter | Standalone GPU metrics exporter for Prometheus |
| DC Watchdog | External uptime monitoring with multi-channel alerts |
SSO & Verification:
- First-time SSO verification enforcement (even with pre-configured API key)
- Persistent verification flag (
/data/auth/watchdog_verified) - "Link Account" button until SSO is completed
UI Improvements:
- "Cloud Service" label for CryptoLabs-hosted services
- Fixed duplicate DC Watchdog cards in System Updates
key_invalidstate displays "Re-link Account" when API key expiresagents_installedstate shows installed agents waiting for heartbeats
Backend:
- Prioritized file-based API key storage over environment variables
- Added key validation against WordPress API
- Propagated
keyErrorstate to frontend for proper UI handling
- Fleet Management landing page
- Unified authentication for all services
- DC Watchdog SSO flow
- Agent deployment via dc-overview
MIT License - See LICENSE for details.