ansible-gitea-role/templates/app.ini.j2

14 lines
289 B
Plaintext
Raw Normal View History

2023-04-15 00:40:47 +02:00
{{ ansible_managed | comment }}
APP_NAME = {{ gitea_app_name }}
RUN_MODE = {{ gitea_run_mode }}
RUN_USER = {{ gitea_run_user }}
2023-04-16 14:22:26 +02:00
{% for section in gitea_config %}
2023-04-15 00:40:47 +02:00
[{{ section }}]
2023-04-16 14:22:26 +02:00
{% for entry, value in gitea_config[section].items() %}
2023-04-15 00:40:47 +02:00
{{ entry }} = {{ value }}
{% endfor %}
{% endfor %}