You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
962 B
24 lines
962 B
4 years ago
|
MB_ADMIN_EMAIL={{ metabase_admin_email }}
|
||
|
MB_EMAIL_FROM_ADDRESS={{ metabase_from_email }}
|
||
|
MB_EMAIL_SMTP_HOST={{metabase_smtp_server }}
|
||
|
MB_EMAIL_SMTP_PORT={{ metabase_smtp_port }}
|
||
|
{% if metabase_smtp_user is defined and metabase_smtp_pass is defined %}
|
||
|
MB_EMAIL_SMTP_USERNAME={{ metabase_smtp_user }}
|
||
|
MB_EMAIL_SMTP_PASSWORD={{ metabase_smtp_pass }}
|
||
|
{% endif %}
|
||
|
MB_EMAIL_SMTP_SECURITY={{ metabase_smtp_starttls | ternary('starttls','none') }}
|
||
|
MB_ANON_TRACKING_ENABLED=false
|
||
|
MB_DB_FILE={{ metabase_root_dir }}/data/metabase.db
|
||
|
MB_DB_DBNAME={{ metabase_db_name }}
|
||
|
MB_DB_HOST={{ metabase_db_server }}
|
||
|
MB_DB_USER={{ metabase_db_user }}
|
||
|
MB_DB_PASS={{ metabase_db_pass | quote }}
|
||
|
MB_DB_PORT={{ metabase_db_port }}
|
||
|
MB_DB_TYPE=mysql
|
||
|
MB_ENCRYPTION_SECRET_KEY={{ metabase_encryption_key | quote }}
|
||
|
MB_JETTY_HOST=0.0.0.0
|
||
|
MB_JETTY_PORT={{ metabase_port }}
|
||
|
MB_PLUGINS_DIR={{ metabase_root_dir }}/plugins
|
||
|
MB_SITE_LOCALE={{ metabase_lang }}
|
||
|
MB_SITE_URL={{ metabase_public_url }}
|