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.
28 lines
972 B
28 lines
972 B
---
|
|
jekyll_init_repo: {{ panel_config.jekyll_init_repo }}
|
|
store_repo_base: {{ panel_config.store_repo_base }}
|
|
|
|
database:
|
|
mjb: postgresql://{{ databases.mjb.user }}:{{ databases.mjb.pass }}@{{ databases.mjb.host }}/{{ databases.mjb.name }}
|
|
minion: postgresql://{{ databases.minion.user }}:{{ databases.minion.pass }}@{{ databases.minion.host }}/{{ databases.minion.name }}
|
|
|
|
domain_for_links: {{ domain_name.panel }}
|
|
|
|
smtp:
|
|
host: {{ smtp.host }}
|
|
from: {{ smtp.from }}
|
|
sasl_username: {{ smtp.user }}
|
|
sasl_password: {{ smtp.pass }}
|
|
|
|
secrets:
|
|
{% for secret in panel_config.secrets %}
|
|
- {{ secret }}
|
|
{% endfor %}
|
|
|
|
register:
|
|
# If a user clicks 'register' which system should they go to?
|
|
default: {{ panel_config.register.default }}
|
|
# Valid registration systems: stripe, invite, open
|
|
enable_stripe: {{ panel_config.register.enable_stripe }}
|
|
enable_invite: {{ panel_config.register.enable_invite }}
|
|
enable_open: {{ panel_config.register.enable_open }}
|
|
|