mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
fix: avoid breaking changes by falling back to copying the identity cert to a location that doesn't require root
This commit is contained in:
parent
bebb8a4ab9
commit
faf9befdf5
@ -58,4 +58,17 @@ if [[ -f "/etc/bitwarden/kerberos/bitwarden.keytab" && -f "/etc/bitwarden/kerber
|
||||
$gosu_cmd kinit $globalSettings__kerberosUser -k -t /etc/bitwarden/kerberos/bitwarden.keytab
|
||||
fi
|
||||
|
||||
if [[ $globalSettings__selfHosted == "true" ]]; then
|
||||
cp /etc/bitwarden/identity/identity.pfx /app/identity.pfx || \
|
||||
{
|
||||
# infer a non-root location for the certificate
|
||||
if [[ -z $globalSettings__identityServer__certificateLocation ]]; then
|
||||
export globalSettings__identityServer__certificateLocation=/home/app/config/identity.pfx
|
||||
fi
|
||||
# copy the certificate to the non-root location to avoid permission issues
|
||||
mkdir -p "$(dirname "$globalSettings__identityServer__certificateLocation")"
|
||||
cp /etc/bitwarden/identity/identity.pfx "$globalSettings__identityServer__certificateLocation"
|
||||
}
|
||||
fi
|
||||
|
||||
exec $gosu_cmd /app/"${PROJECT_NAME}"
|
||||
|
@ -60,9 +60,15 @@ fi
|
||||
|
||||
if [[ $globalSettings__selfHosted == "true" ]]; then
|
||||
cp /etc/bitwarden/identity/identity.pfx /app/identity.pfx || \
|
||||
if [[ -z $globalSettings__identityServer__certificateLocation ]]; then
|
||||
export globalSettings__identityServer__certificateLocation=/home/app/config/identity.pfx
|
||||
fi
|
||||
{
|
||||
# infer a non-root location for the certificate
|
||||
if [[ -z $globalSettings__identityServer__certificateLocation ]]; then
|
||||
export globalSettings__identityServer__certificateLocation=/home/app/config/identity.pfx
|
||||
fi
|
||||
# copy the certificate to the non-root location to avoid permission issues
|
||||
mkdir -p "$(dirname "$globalSettings__identityServer__certificateLocation")"
|
||||
cp /etc/bitwarden/identity/identity.pfx "$globalSettings__identityServer__certificateLocation"
|
||||
}
|
||||
fi
|
||||
|
||||
exec $gosu_cmd /app/"${PROJECT_NAME}"
|
||||
|
@ -60,9 +60,15 @@ fi
|
||||
|
||||
if [[ $globalSettings__selfHosted == "true" ]]; then
|
||||
cp /etc/bitwarden/identity/identity.pfx /app/identity.pfx || \
|
||||
if [[ -z $globalSettings__identityServer__certificateLocation ]]; then
|
||||
export globalSettings__identityServer__certificateLocation=/home/app/config/identity.pfx
|
||||
fi
|
||||
{
|
||||
# infer a non-root location for the certificate
|
||||
if [[ -z $globalSettings__identityServer__certificateLocation ]]; then
|
||||
export globalSettings__identityServer__certificateLocation=/home/app/config/identity.pfx
|
||||
fi
|
||||
# copy the certificate to the non-root location to avoid permission issues
|
||||
mkdir -p "$(dirname "$globalSettings__identityServer__certificateLocation")"
|
||||
cp /etc/bitwarden/identity/identity.pfx "$globalSettings__identityServer__certificateLocation"
|
||||
}
|
||||
fi
|
||||
|
||||
exec $gosu_cmd /app/"${PROJECT_NAME}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user