Local Domain Manager

Features

Multiple TLDs

Use .local, .test, .dev or any custom TLD. Configure up to 10 different TLDs for your domains.

Built-in HTTPS

Self-signed CA with one-click trust. No external proxy like Caddy or Nginx needed.

Docker Integration

Auto-detect running containers and map them to domains. Works with container ports automatically.

Remote Hosts

Proxy to remote IPs or SSH tunnels. Access internal services through local domains.

Cross-Platform DNS

Native DNS support: dnsmasq (macOS), systemd-resolved (Linux), Acrylic (Windows), or hosts file fallback.

Full CLI & Service

Complete CLI with shell completion. Auto-start on boot via LaunchD (macOS) or systemd (Linux).

localhost:2280
Locado Dashboard - Manage your local development domains

Installation

One command to get started

$ curl -fsSL https://locado.hxd.app/install.sh | bash
$ locado domain add myapp.local localhost:3000
# Add a domain
$ locado service start
# Start service

FAQ

Does it require Caddy or Nginx?

No. Locado has a built-in Go reverse proxy with SSL support. No external dependencies required.

Can I use multiple TLDs?

Yes! You can configure up to 10 different TLDs like .local, .test, .dev, or any custom TLD you prefer.

Does it work on Windows?

Yes. Locado supports Windows via Acrylic DNS Proxy. It also works on macOS (dnsmasq) and Linux (systemd-resolved).

How do I auto-start on boot?

Run 'locado service enable' to configure auto-start. Uses LaunchD on macOS and systemd on Linux.

How do I completely uninstall?

Run 'locado uninstall --purge' to remove all files, configurations, DNS settings, and certificates.

Is HTTPS really automatic?

Yes. Locado generates a self-signed CA and certificates automatically. Run 'locado cert trust' to add the CA to your system keychain.

Binary killed immediately after install (macOS)?

This is caused by macOS Gatekeeper quarantine. Run: sudo xattr -cr /usr/local/bin/locado

DNS setup from dashboard doesn't work?

DNS operations require root privileges. Run the install script in terminal: curl -fsSL https://locado.hxd.app/install.sh | bash

Certificate not trusted after install (macOS)?

The CA certificate may be missing SSL trust policy. Run: sudo security add-trusted-cert -d -r trustRoot -p ssl -k /Library/Keychains/System.keychain ~/.local/share/locado/certs/ca.crt

Changelog

v1.0.2 2026-01-17
  • fix(darwin): add ad-hoc code signing and direct launchctl flow for upgrade
v1.0.1 2026-01-17
  • refactor(internal): update package models and configurations
  • chore(ci): sync install.sh to public repo on release
  • feat(install): add smart upgrade detection to install.sh
  • feat(updater): add `locado update rollback` command
  • feat(updater): add `locado update apply` command
v1.0.0-beta7 2026-01-17
  • fix(darwin): use launchctl restart instead of SIGHUP for dnsmasq
  • feat: Refactor command execution to conditionally use sudo and detect daemon context, enabling faster dnsmasq reloads on macOS and preventing interactive installs on Linux.
v1.0.0-beta6 2026-01-14
  • fix(darwin): add SSL trust policy to certificate import
  • fix(darwin): improve dnsmasq detection in service context
  • fix(darwin): ensure dnsmasq.d directory exists in Configure()
v1.0.0-beta5 2026-01-14
  • fix(darwin): improve service status detection and launchctl commands