Handle new parameters
This commit is contained in:
parent
cc55808f31
commit
a35d78be37
3 changed files with 21 additions and 1 deletions
|
|
@ -16,6 +16,9 @@ custom-body-html={{ happydomain_custom_body_html }}
|
|||
{% if happydomain_default_nameserver is defined and happydomain_default_nameserver != "" %}
|
||||
default-ns={{ happydomain_default_nameserver }}
|
||||
{% endif %}
|
||||
{% if happydomain_disable_providers_edit is defined and happydomain_disable_providers_edit != "" %}
|
||||
disable-providers-edit={{ happydomain_disable_providers_edit }}
|
||||
{% endif %}
|
||||
{% if happydomain_external_auth is defined and happydomain_external_auth != "" %}
|
||||
external-auth={{ happydomain_external_auth }}
|
||||
{% endif %}
|
||||
|
|
@ -25,6 +28,9 @@ externalurl={{ happydomain_external_url }}
|
|||
{% if happydomain_jwt_secret_key is defined and happydomain_jwt_secret_key != "" %}
|
||||
jwt-secret-key={{ happydomain_jwt_secret_key }}
|
||||
{% endif %}
|
||||
{% if happydomain_hide_feedback_button is defined and happydomain_hide_feedback_button %}
|
||||
hide-feedback-button={{ happydomain_hide_feedback_button }}
|
||||
{% endif %}
|
||||
leveldb-path={{ happydomain_storage_leveldb_path | default(happydomain_data_dir + '/happydomain.db') }}
|
||||
{% if happydomain_mail_from is defined and happydomain_mail_from != "" %}
|
||||
mail-from={{ happydomain_mail_from }}
|
||||
|
|
@ -44,6 +50,12 @@ mail-smtp-password={{ happydomain_mail_smtp_password }}
|
|||
{% if happydomain_mail_smtp_tls_no_verify is defined and happydomain_mail_smtp_tls_no_verify != "" %}
|
||||
mail-smtp-tls-no-verify={{ happydomain_mail_smtp_tls_no_verify }}
|
||||
{% endif %}
|
||||
{% if happydomain_msg_header_text is defined and happydomain_msg_header_text != "" %}
|
||||
msg-header-text={{ happydomain_msg_header_text }}
|
||||
{% endif %}
|
||||
{% if happydomain_msg_header_color is defined and happydomain_msg_header_color != "" %}
|
||||
msg-header-color={{ happydomain_msg_header_color }}
|
||||
{% endif %}
|
||||
{% if happydomain_newsletter_server_url is defined and happydomain_newsletter_server_url != "" %}
|
||||
newsletter-server-url={{ happydomain_newsletter_server_url }}
|
||||
{% endif %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue