mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-09-01 09:41:13 +00:00
fix: Ensure JWT key file ownership matches PUID/PGID at startup
This commit is contained in:
parent
29687987b2
commit
b7772016ba
1 changed files with 6 additions and 0 deletions
|
|
@ -46,6 +46,12 @@ for loc in "${locations[@]}"; do
|
|||
chownit "$loc"
|
||||
done
|
||||
|
||||
# Ensure the JWT key file is owned by the runtime user, even when the /data
|
||||
# directory ownership already matches PUID:PGID (chownit skips recursion then)
|
||||
if [ -f /data/keys.json ]; then
|
||||
chown "$PUID:$PGID" /data/keys.json
|
||||
fi
|
||||
|
||||
if [ "$(is_true "${SKIP_CERTBOT_OWNERSHIP:-}")" = '1' ]; then
|
||||
log_info 'Skipping ownership change of certbot directories'
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue