Skip to content

Commit

Permalink
set administrator to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
stephdl authored Mar 24, 2024
1 parent 937164b commit fe505e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imageroot/actions/get-configuration/20read
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ config["host"] = os.getenv("TRAEFIK_HOST","")
config["lets_encrypt"] = os.getenv("TRAEFIK_LETS_ENCRYPT") == "True"
config["mail_server"] = os.getenv("MAIL_SERVER", "") # the value is the Mail module UUID!
config["mail_domain"] = os.getenv("MAIL_DOMAIN", "") # the value is the mail domain of user to force domain identity : [email protected] !
config["admin_users"] = os.getenv("ADMIN_USERS", "Administrator")
config["admin_users"] = os.getenv("ADMIN_USERS", "administrator")
config["ldap_domain"] = os.getenv("LDAP_DOMAIN", "")
config["workers_count"] = os.getenv("WOWORKERSCOUNT", "3")
config["auxiliary_account"] = os.getenv("AUXILIARYACCOUNT") == "True"
Expand Down

0 comments on commit fe505e6

Please sign in to comment.