mirror of
https://github.com/btouchard/ackify-ce.git
synced 2026-02-28 10:48:47 -06:00
docs: use correct syntax to generate private key ED25519
This commit is contained in:
@@ -276,8 +276,8 @@ services:
|
||||
### Production variables
|
||||
```bash
|
||||
# Enhanced security
|
||||
ACKIFY_OAUTH_COOKIE_SECRET="$(openssl rand -base64 64)" # AES-256
|
||||
ACKIFY_ED25519_PRIVATE_KEY="$(openssl genpkey -algorithm Ed25519 | base64 -w 0)"
|
||||
ACKIFY_OAUTH_COOKIE_SECRET="$(openssl rand 64 | base64 -w 0)"
|
||||
ACKIFY_ED25519_PRIVATE_KEY="$(openssl rand 64 | base64 -w 0)"
|
||||
|
||||
# HTTPS mandatory
|
||||
ACKIFY_BASE_URL="https://ackify.company.com"
|
||||
|
||||
+2
-2
@@ -284,8 +284,8 @@ services:
|
||||
### Variables production
|
||||
```bash
|
||||
# Sécurité renforcée
|
||||
ACKIFY_OAUTH_COOKIE_SECRET="$(openssl rand -base64 64)" # AES-256
|
||||
ACKIFY_ED25519_PRIVATE_KEY="$(openssl genpkey -algorithm Ed25519 | base64 -w 0)"
|
||||
ACKIFY_OAUTH_COOKIE_SECRET="$(openssl rand 64 | base64 -w 0)"
|
||||
ACKIFY_ED25519_PRIVATE_KEY="$(openssl rand 64 | base64 -w 0)"
|
||||
|
||||
# HTTPS obligatoire
|
||||
ACKIFY_BASE_URL="https://ackify.company.com"
|
||||
|
||||
Reference in New Issue
Block a user