Files
boc/landvex-master-api/nginx-api-landvex.conf
T
Bernt 6989a98d75 feat: Passwordless cross-device authentication
- Arkitektur: docs/auth/passwordless-architecture.md
- Backend: iom/quixzoom-auth-service/ (FastAPI + Redis)
- Webb: quixzoom-market-pages/se/login/ (QR-kod + polling)
- App: iom/quixzoom-app/src/features/auth/ (push + deep links)

Flöde: QR-kod → app-godkännande → webb-inloggad
2026-07-07 07:11:50 +00:00

11 lines
402 B
Plaintext

# Lägg till detta i /etc/nginx/sites-enabled/api.landvex.com
# innan den sista "location /" blocket
location /api/v1/ {
proxy_pass http://127.0.0.1:7073/api/v1/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
add_header Cache-Control "no-store, no-cache, must-revalidate" always;
if ($request_method = OPTIONS) { return 204; }
}