We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5c8b15 commit 7c23870Copy full SHA for 7c23870
1 file changed
RELEASE.md
@@ -27,3 +27,17 @@ CSRF Protection (8a78b2b)
27
- Updated docker-compose configurations with new environment variables
28
- E2E test suite improvements and reliability fixes
29
- Added Kubernetes deployment note in README
30
+
31
+### Kubernetes
32
33
+ A `CSRF_SECRET` environment variable is now required for CSRF protection. Generate a secure 32+ character random string:
34
35
+ ```bash
36
+ openssl rand -base64 32
37
38
+ Add it to your deployment:
39
+ - Docker Compose: Add CSRF_SECRET=<your-secret> to the backend service environment
40
+ - Kubernetes: Add to your ConfigMap/Secret and reference in the backend deployment
41
42
+ If not set, the backend will refuse to start.
43
+ ```
0 commit comments