From 7fdc38a34c0f8c290085c9f314de1f3664f029b8 Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Tue, 6 May 2025 19:06:46 +0530 Subject: [PATCH] feat: SESSION_SECRET --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a16df810..fced1ea5 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,7 @@ You can access the frontend at http://localhost:5173/ and backend at http://loca | `DB_HOST` | Yes | Host address where the Postgres database server is running. | Database connection will fail. | | `DB_PORT` | Yes | Port number used to connect to the Postgres database server. | Database connection will fail. | | `ENCRYPTION_KEY` | Yes | Key used for encrypting sensitive data (proxies, passwords). | Encryption functionality will not work. | +| `SESSION_SECRET` | No | A strong, random string used to sign session cookies | Uses default secret. Recommended to define your own session secret to avoid session hijacking. | | `MINIO_ENDPOINT` | Yes | Endpoint URL for MinIO, to store Robot Run Screenshots. | Connection to MinIO storage will fail. | | `MINIO_PORT` | Yes | Port number for MinIO service. | Connection to MinIO storage will fail. | | `MINIO_CONSOLE_PORT` | No | Port number for MinIO WebUI service. Needed for Docker setup. | Cannot access MinIO Web UI. |