mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -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
|
$gosu_cmd kinit $globalSettings__kerberosUser -k -t /etc/bitwarden/kerberos/bitwarden.keytab
|
||||||
fi
|
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}"
|
exec $gosu_cmd /app/"${PROJECT_NAME}"
|
||||||
|
@ -60,9 +60,15 @@ fi
|
|||||||
|
|
||||||
if [[ $globalSettings__selfHosted == "true" ]]; then
|
if [[ $globalSettings__selfHosted == "true" ]]; then
|
||||||
cp /etc/bitwarden/identity/identity.pfx /app/identity.pfx || \
|
cp /etc/bitwarden/identity/identity.pfx /app/identity.pfx || \
|
||||||
if [[ -z $globalSettings__identityServer__certificateLocation ]]; then
|
{
|
||||||
export globalSettings__identityServer__certificateLocation=/home/app/config/identity.pfx
|
# infer a non-root location for the certificate
|
||||||
fi
|
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
|
fi
|
||||||
|
|
||||||
exec $gosu_cmd /app/"${PROJECT_NAME}"
|
exec $gosu_cmd /app/"${PROJECT_NAME}"
|
||||||
|
@ -60,9 +60,15 @@ fi
|
|||||||
|
|
||||||
if [[ $globalSettings__selfHosted == "true" ]]; then
|
if [[ $globalSettings__selfHosted == "true" ]]; then
|
||||||
cp /etc/bitwarden/identity/identity.pfx /app/identity.pfx || \
|
cp /etc/bitwarden/identity/identity.pfx /app/identity.pfx || \
|
||||||
if [[ -z $globalSettings__identityServer__certificateLocation ]]; then
|
{
|
||||||
export globalSettings__identityServer__certificateLocation=/home/app/config/identity.pfx
|
# infer a non-root location for the certificate
|
||||||
fi
|
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
|
fi
|
||||||
|
|
||||||
exec $gosu_cmd /app/"${PROJECT_NAME}"
|
exec $gosu_cmd /app/"${PROJECT_NAME}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user