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>
22 lines
742 B
Bash
Executable File
22 lines
742 B
Bash
Executable File
#!/bin/bash
|
|
|
|
replaceVAPIDKeys()
|
|
{
|
|
local file="$1"
|
|
|
|
# Only scan for VAPID placeholders that actually exist in the file
|
|
local existing_placeholders=$(sudo grep -oE 'RANDOMIZEDVAPID[0-9]*' "$file" 2>/dev/null | sort -u)
|
|
|
|
if [[ -n "$existing_placeholders" ]]; then
|
|
while IFS= read -r placeholder; do
|
|
if [[ -n "$placeholder" ]]; then
|
|
local vapid_key
|
|
vapid_key=$(openssl rand -base64 32 | tr -d '+/=' | tr -cd '[:alnum:]')
|
|
|
|
sudo sed -i "s/${placeholder}/${vapid_key}/g" "$file"
|
|
checkSuccess "Updated ${placeholder} in $(basename "$file") with a new VAPID key."
|
|
fi
|
|
done <<< "$existing_placeholders"
|
|
fi
|
|
}
|