Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
parent
ad30a8307f
commit
f418990e84
85 changed files with 3520 additions and 2 deletions
66
roles/firefly/defaults/main.yml
Normal file
66
roles/firefly/defaults/main.yml
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
---
|
||||
firefly_port: 8080
|
||||
|
||||
# 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: []
|
||||
Loading…
Add table
Add a link
Reference in a new issue