| 1 | # Oversight live registry configuration. |
| 2 | # Copy to .env locally and fill in deployment-specific values. Do not commit .env. |
| 3 | |
| 4 | # Host ports. The registry stays loopback-only; Caddy owns public TLS. |
| 5 | OVERSIGHT_REGISTRY_BIND=127.0.0.1 |
| 6 | OVERSIGHT_HTTP_BIND=0.0.0.0 |
| 7 | OVERSIGHT_HTTPS_BIND=0.0.0.0 |
| 8 | |
| 9 | # Public hostnames. Point DNS at the host running the live Caddy profile. |
| 10 | OVERSIGHT_REGISTRY_DOMAIN=registry.oversightprotocol.dev |
| 11 | OVERSIGHT_BEACON_DOMAIN=b.oversightprotocol.dev |
| 12 | OVERSIGHT_OCSP_DOMAIN=ocsp.oversightprotocol.dev |
| 13 | OVERSIGHT_LICENSE_DOMAIN=lic.oversightprotocol.dev |
| 14 | |
| 15 | # Browser inspector origins allowed to read registry evidence endpoints. |
| 16 | OVERSIGHT_CORS_ORIGINS=https://oversightprotocol.dev,https://www.oversightprotocol.dev,https://oversight-protocol.github.io |
| 17 | |
| 18 | # Live registry behavior. |
| 19 | OVERSIGHT_JURISDICTION=GLOBAL |
| 20 | OVERSIGHT_REKOR_ENABLED=0 |
| 21 | OVERSIGHT_REKOR_URL=https://log2025-1.rekor.sigstore.dev |
| 22 | TRUSTED_PROXY=1 |
| 23 | |
| 24 | # Secrets. Generate real values locally, for example: |
| 25 | # openssl rand -hex 32 |
| 26 | OVERSIGHT_DNS_EVENT_SECRET= |
| 27 | OVERSIGHT_OPERATOR_TOKEN= |