Current state

This commit is contained in:
2025-09-01 19:01:24 -05:00
parent e2ccb3810f
commit f2948074d9
20 changed files with 661 additions and 79 deletions

10
authelia/gen-secrets.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
cd $parent_path
mkdir -p ./secrets
openssl rand -base64 60 > ./secrets/JWT_SECRET
openssl rand -base64 60 > ./secrets/SESSION_SECRET
openssl rand -base64 60 > ./secrets/STORAGE_PASSWORD
openssl rand -base64 60 > ./secrets/STORAGE_ENCRYPTION_KEY