chore(features-guide): 🔧 update multi-region deployment strategies, failover logic, and biometric/OTP verification docs
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
9ae5beec54
commit
e158150b04
2 changed files with 74 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
# Domain Deployment Architecture
|
||||
|
||||
The Lilith Platform uses a **brand-deployment architecture** to serve multiple branded websites from a single codebase. Each brand gets its own domain, nginx vhost configuration, and deployment infrastructure while sharing the core marketplace application.
|
||||
The Lilith Platform uses a **domain deployment architecture** with nginx vhost infrastructure to serve multiple branded websites from a single codebase. Each brand domain gets its own nginx virtual host (vhost) configuration and deployment infrastructure while sharing the core marketplace application. The nginx reverse proxy layer is the critical infrastructure component that maps domains to backend services.
|
||||
|
||||
## Domain Deployment Overview
|
||||
|
||||
|
|
|
|||
73
features-guide/identity-verification-system.md
Normal file
73
features-guide/identity-verification-system.md
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
# Identity Verification System
|
||||
|
||||
The Lilith Platform requires identity verification for all users — both providers (sex workers) and clients. This verification system combines government ID checks, background screening, and ongoing safety monitoring.
|
||||
|
||||
## How Identity Verification Works
|
||||
|
||||
### Step 1: Government ID Upload
|
||||
|
||||
During registration, users must upload a valid government-issued photo ID:
|
||||
- Passport, national ID card, or driver's license
|
||||
- Document must be current (not expired)
|
||||
- Photo must be clearly readable
|
||||
- Name must match registration details
|
||||
|
||||
### Step 2: Identity Verification Check
|
||||
|
||||
The platform verifies the uploaded ID through automated checks:
|
||||
- **Document authenticity** — AI-powered fraud detection validates the ID is genuine
|
||||
- **Photo matching** — Selfie comparison confirms the person matches the ID photo
|
||||
- **Data extraction** — Name, date of birth, and ID number are extracted for records
|
||||
- **Duplicate detection** — Prevents users from creating multiple accounts with the same ID
|
||||
|
||||
### Step 3: Background Screening
|
||||
|
||||
After identity is confirmed, a background check is performed:
|
||||
- **Criminal record screening** — Checks for relevant criminal history
|
||||
- **Sex offender registry check** — Mandatory for all client accounts
|
||||
- **Watchlist screening** — Cross-references international safety databases
|
||||
- **Age verification** — Confirms user is 18+ (or local legal age)
|
||||
|
||||
### Step 4: Verification Badge
|
||||
|
||||
Upon passing all checks, users receive a verification badge:
|
||||
- Displayed prominently on their profile
|
||||
- Green checkmark indicates fully verified status
|
||||
- Badge includes verification date for transparency
|
||||
- Periodic re-verification required to maintain badge
|
||||
|
||||
## Background Check Details
|
||||
|
||||
Background screening is integrated into the verification pipeline at registration:
|
||||
|
||||
| Check Type | Applied To | Frequency |
|
||||
|-----------|-----------|-----------|
|
||||
| Government ID verification | All users | Registration + annual re-check |
|
||||
| Background screening | All users | Registration + annual re-check |
|
||||
| Sex offender registry | Clients | Registration + quarterly check |
|
||||
| Watchlist screening | All users | Registration + ongoing monitoring |
|
||||
| Age verification | All users | Registration |
|
||||
|
||||
## Safety Integration
|
||||
|
||||
The identity verification system integrates with the platform's broader safety infrastructure:
|
||||
|
||||
- **Verification status** visible to other users before booking
|
||||
- **Unverified users** cannot access booking, messaging, or profile features
|
||||
- **Failed verification** triggers safety team review
|
||||
- **Revoked verification** immediately restricts account access
|
||||
- **Re-verification** reminders sent before expiration
|
||||
|
||||
## Privacy and Data Protection
|
||||
|
||||
Identity verification data is handled under strict GDPR compliance:
|
||||
|
||||
- ID images encrypted at rest and in transit
|
||||
- Minimal data retention — original ID images deleted after verification
|
||||
- Background check results stored as pass/fail only (not raw data)
|
||||
- Users can request deletion of verification data (triggers account deactivation)
|
||||
- No sharing of verification data with third parties
|
||||
|
||||
---
|
||||
|
||||
**Last Updated**: 2026-02-18
|
||||
Loading…
Add table
Reference in a new issue