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
95
roles/galene/defaults/main.yml
Normal file
95
roles/galene/defaults/main.yml
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
---
|
||||
|
||||
# Reference (branch or tag) of the Galene git repository.
|
||||
#
|
||||
# - Type: str
|
||||
# - Required: No
|
||||
# - Default: galene-1.0
|
||||
galene_version: galene-1.0
|
||||
|
||||
# Port to listen.
|
||||
#
|
||||
# - Type: int
|
||||
# - Required: No
|
||||
# - Default: 443
|
||||
galene_http_port: 443
|
||||
|
||||
# TURN address.
|
||||
#
|
||||
# - Type: str
|
||||
# - Required: No
|
||||
# - Default: :1194
|
||||
galene_turn: ":1194"
|
||||
|
||||
# Operating system user to run the service.
|
||||
#
|
||||
# - Type: str
|
||||
# - Required: No
|
||||
# - Default: galene
|
||||
galene_user: galene
|
||||
|
||||
# Operating system group to run the service.
|
||||
#
|
||||
# - Type: str
|
||||
# - Required: No
|
||||
# - Default: galene
|
||||
galene_group: galene
|
||||
|
||||
# Path to the base directory.
|
||||
#
|
||||
# - Type: path
|
||||
# - Required: No
|
||||
# - Default: /var/lib/galene
|
||||
galene_base_directory: /var/lib/galene
|
||||
|
||||
# Path to the data directory.
|
||||
#
|
||||
# - Type: path
|
||||
# - Required: No
|
||||
# - Default: {{ galene_base_directory }}/data
|
||||
galene_data_directory: "{{ galene_base_directory }}/data"
|
||||
|
||||
# Path to the groups directory.
|
||||
#
|
||||
# - Type: path
|
||||
# - Required: No
|
||||
# - Default: {{ galene_base_directory }}/groups
|
||||
galene_groups_directory: "{{ galene_base_directory }}/groups"
|
||||
|
||||
# Path to the recordings directory.
|
||||
#
|
||||
# - Type: path
|
||||
# - Required: No
|
||||
# - Default: {{ galene_base_directory }}/recordings
|
||||
galene_recording_directory: "{{ galene_base_directory }}/recordings"
|
||||
|
||||
# Path to the static directory.
|
||||
#
|
||||
# - Type: path
|
||||
# - Required: No
|
||||
# - Default: {{ galene_base_directory }}/static
|
||||
galene_static_directory: "{{ galene_base_directory }}/static"
|
||||
|
||||
# Custom settings.
|
||||
#
|
||||
# Key is the name of the setting.
|
||||
#
|
||||
# Value is the value of the setting.
|
||||
#
|
||||
# See .
|
||||
#
|
||||
# - Type: dict
|
||||
# - Required: No
|
||||
galene_config: {}
|
||||
|
||||
# Dict of groups.
|
||||
#
|
||||
# Key is the group name.
|
||||
#
|
||||
# Value is the group definition.
|
||||
#
|
||||
# See .
|
||||
#
|
||||
# - Type: dict
|
||||
# - Required: No
|
||||
galene_groups: {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue