Improve .env comments for Update Manager settings

Clarify that 0=enabled and 1=disabled for DISABLE_WEB_UPDATES
and DISABLE_BACKUP_RESTORE environment variables.
This commit is contained in:
Sebastian Almberg 2026-02-03 20:16:24 +01:00
parent 984529bc79
commit e83e7398a2

8
.env
View file

@ -63,12 +63,12 @@ ERROR_PAGE_SHOW_HELP=1
# Update Manager settings # Update Manager settings
################################################################################### ###################################################################################
# Set this to 1 to completely disable web-based updates, regardless of user permissions. # Disable web-based updates from the Update Manager UI (0=enabled, 1=disabled).
# Use this if you prefer to manage updates through your own deployment process. # When disabled, use the CLI command "php bin/console partdb:update" instead.
DISABLE_WEB_UPDATES=1 DISABLE_WEB_UPDATES=1
# Set this to 1 to disable the backup restore feature from the web UI. # Disable backup restore from the Update Manager UI (0=enabled, 1=disabled).
# Restoring backups is a destructive operation that could cause data loss. # Restoring backups is a destructive operation that could overwrite your database.
DISABLE_BACKUP_RESTORE=1 DISABLE_BACKUP_RESTORE=1
################################################################################### ###################################################################################