39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
{% set VAULT_KEY = getenv("VAULT_KEY") %}
|
|
# This file is maintained by remco and populated with data from HashiCorp
|
|
# Vault. Changes not done in Vault will be reverted when file gets rendered.
|
|
|
|
{% for key in ls(VAULT_KEY|add:"/data") %}
|
|
{{key}}={{ getv(VAULT_KEY|add:"/data/"|add:key) }}
|
|
{% endfor %}
|
|
|
|
# RESTARTPOLICY=always
|
|
|
|
# Other available defaults from https://github.com/tt-rss/tt-rss/wiki/Installation-Guide:
|
|
|
|
# Keep updating feeds even for users who rarely log in. Note that this also
|
|
# effectively disables purging of articles for users who rarely log in.
|
|
# TTRSS_DAEMON_UPDATE_LOGIN_LIMIT=0
|
|
|
|
# Run FPM under this UID/GID.
|
|
# OWNER_UID=1000
|
|
# OWNER_GID=1000
|
|
|
|
# FPM settings.
|
|
# PHP_WORKER_MAX_CHILDREN=5
|
|
# PHP_WORKER_MEMORY_LIMIT=256M
|
|
|
|
# Auto create another user (in addition to built-in admin) unless it already exists.
|
|
# *_USER_ACCESS_LEVEL:
|
|
# -2 - forbidden to login
|
|
# -1 - readonly
|
|
# 0 - default user
|
|
# 10 - admin
|
|
# AUTO_CREATE_USER=
|
|
# AUTO_CREATE_USER_PASS=
|
|
# AUTO_CREATE_USER_ACCESS_LEVEL=0
|
|
|
|
# Other config.php defines
|
|
# TTRSS_PLUGINS=auth_internal,auth_remote
|
|
# TTRSS_SESSION_COOKIE_LIFETIME=2592000
|
|
# TTRSS_FORCE_ARTICLE_PURGE=30
|