Rewrite CSP host seam and middleware package marker.

Export names stay for the cloud overlay. JWT still lives only in inherited auth.py.
This commit is contained in:
2026-09-20 20:19:58 +02:00
parent 739e6f7f17
commit 6f3e714a54
3 changed files with 50 additions and 0 deletions
@@ -0,0 +1,5 @@
"""HTTP middleware package for the FastAPI app.
JWT verification lives in ``auth.py`` and is imported by name from ``main``.
This module is a package marker only — do not re-export auth from here.
"""
@@ -0,0 +1,17 @@
/**
* CSP allow-lists consumed by next.config.ts.
*
* Self-host lists only the local API. The hosted-cloud overlay adds Clerk,
* Stripe, and analytics hosts here without changing export names.
*/
export const CSP_SCRIPT_HOSTS: string[] = [];
export const CSP_CONNECT_HOSTS: string[] = [
"http://127.0.0.1:18741",
"http://localhost:18741",
"http://127.0.0.1:8080",
"http://localhost:8080",
];
export const CSP_FRAME_HOSTS: string[] = [];