Version 1.674
Released: 2025-02-??
access_host
to directadmin.conf
improved
Migrate Move access_host...
field values to directadmin.conf
field db_default_access_hosts
as comma separated values. The field defines a list of default access hosts to use. This migration cleans up conf/mysql.conf
file responsibily to solely contain connection details.
Example:
da config-set db_default_access_hosts 'localhost,123.123.123.%'
improved
dns_create_post extra variables for restores/dnssecThe dns_create_post
hook is triggered by the adding of a zone to the named.conf
file. During a restore, a plain domain is first created (domain.com.db
), but if it was signed in the backup, it's swapped to the signed variant, domain.com.db.signed
, which triggers a 2nd call to the hook. This change adds 2 extra variables to the hook:
zone_existed=0|1 : if the line was already present or not
skip_template=0|1 : if the call is being triggered by a restore, this will be 1.
improved
All hooks now use isolated set of environmental variablesThe hook scripts system has been updated to set all environmental variables after the fork, in a cleaner, more isolated manner. Global variables in DA will still be passed as before.
redis_enabled
flag to user.conf
improved
Add This flag is used to enable user redis service after user reactivation after suspend or migration.