A free, open, self-hosted app platform (GNU AGPLv3): one-click app deploys, Traefik reverse proxy with automatic SSL, rootless Docker support, gluetun VPN routing, and a web dashboard to manage it all. Free & open forever to self-host; optional paid hosted services fund it. See PROMISE.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
24 lines
851 B
Bash
24 lines
851 B
Bash
#!/bin/bash
|
|
|
|
# Laravel-style APP_KEY placeholders.
|
|
# Bookstack (and other Laravel apps) expect APP_KEY=base64:<32-byte
|
|
# base64> — refuses to boot otherwise. We swap RANDOMIZEDAPPKEY<N>
|
|
# placeholders with a freshly generated value.
|
|
replaceLaravelAppKeys()
|
|
{
|
|
local file="$1"
|
|
|
|
local existing_placeholders=$(sudo grep -oE 'RANDOMIZEDAPPKEY[0-9]*' "$file" 2>/dev/null | sort -u)
|
|
|
|
if [[ -n "$existing_placeholders" ]]; then
|
|
while IFS= read -r placeholder; do
|
|
if [[ -n "$placeholder" ]]; then
|
|
local app_key
|
|
app_key="base64:$(openssl rand -base64 32)"
|
|
sudo sed -i "s#${placeholder}#${app_key}#g" "$file"
|
|
checkSuccess "Updated ${placeholder} in $(basename "$file") with a new Laravel APP_KEY."
|
|
fi
|
|
done <<< "$existing_placeholders"
|
|
fi
|
|
}
|