ansible-role-unifi-controller/templates/env.unifi-controller.conf.j2

21 lines
524 B
Plaintext
Raw Permalink Normal View History

2023-09-21 14:58:46 +02:00
# Add environment variables for unifi-controller here
# Note: This is a .ini file format
PUID={{ unifi_uid }}
PUID={{ unifi_gid }}
MEM_LIMIT={{ unifi_mem_limit }}
MEM_STATUP={{ unifi_mem_startup }}
TZ={{ unifi_tz }}
MONGO_USER={{ unifi_mongo_user }}
MONGO_PASS={{ unifi_mongo_pass }}
MONGO_HOST={{ unifi_mongo_host }}
MONGO_PORT={{ unifi_mongo_port }}
MONGO_DBNAME={{ unifi_nongo_db_name }}
MONGO_AUTHSOURCE={{ unifi_mongo_auth_source }}
{% if unifi_mongo_tls is defined -%}
MONGO_TLS= {{ unifi_mongo_tls }}
{% endif %}
2023-09-21 14:58:46 +02:00