Your websites, your rulesβwithout the headaches.
Turn multiple websites and apps into one simple dashboard. Click, save, done. No code, no config files, no PhD required.
You want your apps accessible online. You don't want to become a networking expert first.
The problem: Managing reverse proxies usually means editing config files, memorizing cryptic syntax, and hoping you didn't break everything.
Charon's answer: A web interface where you click boxes and type domain names. That's it.
- β Your blog gets a green lock (HTTPS) automatically
- β Your chat server works without weird port numbers
- β Your admin panel blocks everyone except you
- β Everything stays up even when you make changes
No config files. No terminal commands. Just click, type your domain name, and you're live. If you can use a website, you can run Charon.
Free SSL certificates that request, install, and renew themselves. Your sites get the green padlock without you lifting a finger.
Web Application Firewall, rate limiting, geographic blocking, access control lists, and intrusion detection via CrowdSec. Protection that "just works."
Automatically adds standard headers (X-Real-IP, X-Forwarded-Proto, etc.) so your backend applications see real client IPs, enforce HTTPS correctly, and log accuratelyβwith full backward compatibility for existing hosts.
Already running apps in Docker? Charon finds them automatically and offers one-click proxy setup. No manual configuration required.
See exactly what's happening with live request logs, uptime monitoring, and instant notifications when something goes wrong.
Import your existing Caddy configurations with one click. Already invested in another reverse proxy? Bring your work with you.
Update domains, add security rules, or modify settings instantlyβno container restarts needed.* Your sites stay up while you make changes.
Run dozens of websites, APIs, or services from a single dashboard. Perfect for homelab enthusiasts and small teams managing multiple projects.
One Docker container. No databases to install. No external services required. No complexityβjust pure simplicity.
No premium tiers. No feature paywalls. No usage limits. Everything you see is yours to use, forever, backed by the MIT license.
* Note: Initial security engine setup (CrowdSec) requires a one-time container restart to initialize the protection layer. All subsequent changes happen live.
Save this as docker-compose.yml:
services:
charon:
image: ghcr.io/wikid82/charon:latest
container_name: charon
restart: unless-stopped
ports:
- "80:80"
- "443:443"
- "443:443/udp"
- "8080:8080"
volumes:
- ./charon-data:/app/data
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- CHARON_ENV=production
Then run:
docker-compose up -ddocker run -d \
--name charon \
-p 80:80 \
-p 443:443 \
-p 443:443/udp \
-p 8080:8080 \
-v ./charon-data:/app/data \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
-e CHARON_ENV=production \
ghcr.io/wikid82/charon:latest- Charon downloaded and started
- The web interface opened on port 8080
- Your websites will use ports 80 (HTTP) and 443 (HTTPS)
Open http://localhost:8080 and start adding your websites!
If you're upgrading from a previous version with persistent data:
docker exec charon /app/charon migrate
docker restart charonThis ensures security features (especially CrowdSec) work correctly.
Important: If you had CrowdSec enabled before the upgrade, it will automatically restart after migration. You don't need to manually re-enable it via the GUI. See Migration Guide for details.
π Full Documentation β Everything explained simply π 5-Minute Guide β Your first website up and running π¬ Ask Questions β Friendly community help π Report Problems β Something broken? Let us know
Charon uses Agent Skills for AI-discoverable, executable development tasks. Skills are self-documenting task definitions that can be executed by both humans and AI assistants like GitHub Copilot.
Agent Skills combine YAML metadata with Markdown documentation to create standardized, AI-discoverable task definitions. Each skill represents a specific development task (testing, building, security scanning, etc.) that can be:
- β Executed directly via command line
- β Discovered by AI assistants (GitHub Copilot, etc.)
- β Run from VS Code tasks menu
- β Integrated in CI/CD pipelines
Charon provides 19 operational skills across multiple categories:
- Testing (4 skills): Backend/frontend unit tests and coverage analysis
- Integration (5 skills): CrowdSec, Coraza, and full integration test suites
- Security (2 skills): Trivy vulnerability scanning and Go security checks
- QA (1 skill): Pre-commit hooks and code quality checks
- Utility (4 skills): Version management, cache clearing, database recovery
- Docker (3 skills): Development environment management
Command Line:
# Run backend tests with coverage
.github/skills/scripts/skill-runner.sh test-backend-coverage
# Run security scan
.github/skills/scripts/skill-runner.sh security-scan-trivyVS Code Tasks:
- Open Command Palette (
Ctrl+Shift+PorCmd+Shift+P) - Select
Tasks: Run Task - Choose your skill (e.g.,
Test: Backend with Coverage)
GitHub Copilot: Simply ask Copilot to run tasks naturally:
- "Run backend tests with coverage"
- "Start the development environment"
- "Run security scans"
- Agent Skills Documentation β Complete skill reference
- agentskills.io Specification β Standard format details
- Migration Guide β Transition from legacy scripts
Want to help make Charon better? Check out CONTRIBUTING.md
MIT License Β· Documentation Β· Releases
Built with β€οΈ by @Wikid82
Powered by Caddy Server
