Refactor project branding from HexaHost to Axiom across all configurations, documentation, and code files. Update environment variables, Docker setup, and README to reflect the new brand name. Ensure consistency in naming conventions and improve clarity in setup instructions.
Some checks failed
CI / Bot (Python) (push) Failing after 12s
CI / Dashboard (Next.js) (push) Failing after 9s

This commit is contained in:
TheOnlyMace
2026-07-21 19:45:07 +02:00
parent 03c8f2ec2c
commit daf3338382
84 changed files with 238 additions and 236 deletions

View File

@@ -12,7 +12,7 @@
# ╚══════════════════════════════════════════════════════════════════╝
"""
HTTPS Tunnel for the HexaHost API — Cloudflare Tunnel via pycloudflared.
HTTPS Tunnel for the Axiom API — Cloudflare Tunnel via pycloudflared.
Zero manual installs. Just:
1. pip install pycloudflared (already in requirements.txt)
@@ -27,16 +27,16 @@ How to get your CF_TUNNEL_TOKEN (browser only, no CLI needed)
1. Go to https://one.dash.cloudflare.com
2. Networks → Tunnels → Create a tunnel
3. Choose "Cloudflared" as connector type
4. Give it a name (e.g. hexahost-api) and click Save
4. Give it a name (e.g. axiom-api) and click Save
5. On the "Install connector" step, find the token in the command shown:
cloudflared tunnel run --token <YOUR_TOKEN_HERE>
Copy just the token string.
6. Go to "Published Application Routes" tab → Add a Published Application Routes:
Subdomain: HexaHost-api Domain: yourdomain.com Service: http://localhost:8000
Subdomain: Axiom-api Domain: yourdomain.com Service: http://localhost:8000
(Or use any domain you have on Cloudflare)
7. Paste the token into your .env:
CF_TUNNEL_TOKEN = "eyJhIjoiX..."
CF_TUNNEL_URL = "https://hexahost-api.yourdomain.com"
CF_TUNNEL_URL = "https://axiom-api.yourdomain.com"
That's the permanent URL — never changes between restarts.
Unlimited bandwidth, unlimited requests, free.
@@ -303,7 +303,7 @@ def _run_tunnel(binary: str, token: str, port: int, public_url: str) -> None:
def start_tunnel() -> None:
"""
Start the Cloudflare Tunnel in a background daemon thread.
Called from HexaHost.py after keep_alive().
Called from Axiom.py after keep_alive().
"""
if not TUNNEL_ENABLED:
print(f"{_YELLOW}◈ Tunnel: disabled via TUNNEL_ENABLED=false{_RESET}")