Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/shared/naming-conventions.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

| Service | Repo name | Internal name | Hostname |
|---|---|---|---|
| Central API | `zeroauth-dev/ZeroAuth` | `zeroauth-api` | `api.zeroauth.dev` (planned; today: `zeroauth.dev/v1/*`) |
| Central API | `zeroauth-dev/ZeroAuth` | `zeroauth-api` | `api.zeroauth.dev` (planned; today: `api.zeroauth.dev/v1/*`) |
| Verifier | `zeroauth-dev/ZeroAuth-Verifier` (planned) | `zeroauth-verifier` | internal-only, behind API |
| IoT firmware | `zeroauth-dev/ZeroAuth-IoT` (planned) | `zeroauth-iot` | (runs on Orange Pi devices) |
| Mobile SDK | `zeroauth-dev/ZeroAuth-Mobile-SDK` (planned) | `zeroauth-sdk` | n/a (library) |
| Dashboard | currently inside `zeroauth-dev/ZeroAuth: dashboard/` | `zeroauth-dashboard` | `zeroauth.dev/dashboard/` |
| Docs site | inside `zeroauth-dev/ZeroAuth: website/` | `zeroauth-docs` | `zeroauth.dev/docs/` |
| Dashboard | currently inside `zeroauth-dev/ZeroAuth: dashboard/` | `zeroauth-dashboard` | `console.zeroauth.dev` |
| Docs site | inside `zeroauth-dev/ZeroAuth: website/` | `zeroauth-docs` | `docs.zeroauth.dev` |
| Governance | `zeroauth-dev/ZeroAuth-Governance` *(this repo)* | `zeroauth-governance` | n/a (docs only) |

## Environment variables
Expand Down
2 changes: 1 addition & 1 deletion docs/threat-model/canonical.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This is the **cross-repo source of truth** for ZeroAuth's threat model. Every pr

| Surface | Component | Exposure | Notes |
|---|---|---|---|
| `https://zeroauth.dev/v1/*` | API | Public, tenant-API-key authed | Scoped to `(tenant_id, environment)`. Rate-limit + monthly quota per tenant. |
| `https://api.zeroauth.dev/v1/*` | API | Public, tenant-API-key authed | Scoped to `(tenant_id, environment)`. Rate-limit + monthly quota per tenant. |
| `https://zeroauth.dev/api/console/*` | API (console) | Public, JWT-authed for everything except signup + login | Per-IP rate limit on signup/login. Password policy enforced. |
| `https://zeroauth.dev/api/admin/*` | API (admin) | Public, `x-api-key` (single shared admin key) | Read-only today. |
| `https://zeroauth.dev/api/health` | API | Public, unauth | Health + subsystem status only. |
Expand Down
2 changes: 1 addition & 1 deletion docs/threat-model/dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

## Surfaces

- React SPA served at `https://zeroauth.dev/dashboard/*`
- React SPA served at `https://console.zeroauth.dev/*`
- Console API consumed at `/api/console/*` (authenticated via JWT in `Authorization: Bearer` header)
- 10 pages: Login, Signup, Overview, ApiKeys, Users, Devices, Verifications, Attendance, Audit, Settings
Comment on lines +8 to 10

Expand Down
2 changes: 1 addition & 1 deletion release-coordination/changelogs/pre-release-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

## Summary

First production deploy. Central API live at `https://zeroauth.dev/v1/*`. Dashboard live at `https://zeroauth.dev/dashboard/*`. TLS via Caddy + Let's Encrypt. Hosted on VPS at `104.207.143.14`.
First production deploy. Central API live at `https://api.zeroauth.dev/v1/*`. Dashboard live at `https://console.zeroauth.dev/*`. TLS via Caddy + Let's Encrypt. Hosted on VPS at `104.207.143.14`.

## API

Expand Down
Loading