mirror of
https://github.com/wahyd4/passkey-auth.git
synced 2026-08-09 04:15:55 +10:00
- Complete WebAuthn/FIDO2 authentication implementation - SQLite database with user and credential management - Email-based user identification with allowlist support - Admin approval workflow for new users - Session management with secure cookies - Docker containerization with Debian base for SQLite compatibility - Kubernetes deployment manifests with nginx ingress support - Web-based admin interface for user management - Comprehensive documentation and deployment guides - Standard open source project structure with CI/CD
25 lines
426 B
YAML
25 lines
426 B
YAML
server:
|
|
port: "8080"
|
|
host: "0.0.0.0"
|
|
|
|
webauthn:
|
|
rp_display_name: "Passkey Auth"
|
|
rp_id: "localhost"
|
|
rp_origins:
|
|
- "http://localhost:8080"
|
|
|
|
database:
|
|
path: "passkey-auth.db"
|
|
|
|
cors:
|
|
allowed_origins:
|
|
- "*"
|
|
|
|
auth:
|
|
session_secret: "change-me-in-production"
|
|
require_approval: true
|
|
# Email allowlist - leave empty to allow any email
|
|
allowed_emails:
|
|
# - "admin@example.com"
|
|
# - "user@example.com"
|