ansible/roles/firefly/defaults/main.yml
Julien Riou 0a0341e6f9
Some checks failed
/ ansible-docsmith (push) Successful in 34s
/ molecule (certbot) (push) Failing after 55s
/ molecule (galene) (push) Failing after 53s
/ molecule (golang) (push) Failing after 45s
Initial commit
Signed-off-by: Julien Riou <julien@riou.xyz>
2026-02-17 09:39:28 +01:00

66 lines
1.1 KiB
YAML

---
firefly_port: 8000
# Version of the docker image.
#
# - Type: str
# - Required: No
# - Default: latest
firefly_version: latest
# Directory where to store data files.
#
# - Type: path
# - Required: No
# - Default: /var/lib/firefly
firefly_home: /var/lib/firefly
# E-mail address of the site owner.
#
# - Type: str
# - Required: No
# - Default: root@localhost
firefly_site_owner: root@localhost
# Language of the web interface.
#
# - Type: str
# - Required: No
# - Default: en_US
firefly_language: en_US
# Time zone of the web interface.
#
# - Type: str
# - Required: No
# - Default: Etc/UTC
firefly_tz: Etc/UTC
# Name of the database.
#
# - Type: str
# - Required: No
# - Default: firefly
firefly_db_database: firefly
# Name of the user to connect to the database.
#
# - Type: str
# - Required: No
# - Default: firefly
firefly_db_username: firefly
# Configure iptables rules.
#
# - Type: bool
# - Required: No
# - Default: false
firefly_manage_iptables: false
# List of IP ranges to allow when `firefly_manage_iptables` is enabled.
#
# - Type: list
# - Required: No
firefly_allowed_sources: []