From cb28afcdf567c7643434cf7ab3bcf9a6cb576d94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 7 Jun 2026 22:28:25 +0200 Subject: [PATCH] Moved APP_SECRET value to the top of .env --- .env | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.env b/.env index 8d5e5a54..8311abad 100644 --- a/.env +++ b/.env @@ -1,6 +1,10 @@ #### Part-DB Configuration # See https://docs.part-db.de/configuration.html for documentation of available options +# Change this to a random value to secure your installation! You can generate a random string with "openssl rand -hex 16" +# Share that value with nobody and keep it secret +APP_SECRET=a03498528f5a5fc089273ec9ae5b2849 + ################################################################################### # Database settings ################################################################################### @@ -158,7 +162,6 @@ CORS_ALLOW_ORIGIN='^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$' ###> symfony/framework-bundle ### APP_ENV=prod -APP_SECRET=a03498528f5a5fc089273ec9ae5b2849 APP_SHARE_DIR=var/share ###< symfony/framework-bundle ###