mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-07-27 00:05:44 +02:00
Update to 2021-12-01 19:13
This commit is contained in:
32
roles/ethercalc/defaults/main.yml
Normal file
32
roles/ethercalc/defaults/main.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
|
||||
# A unique ID is needed for each ethercalc instance
|
||||
# You can deploy several instances on the same machine
|
||||
ethercalc_id: 1
|
||||
|
||||
# Path where ethercalc will be installed
|
||||
# You also need to choose e different root_dir for each instance
|
||||
ethercalc_root_dir: /opt/ethercalc_{{ ethercalc_id }}
|
||||
|
||||
# User account/group under which the daemon will run. Will be created if needed
|
||||
ethercalc_user: ethercalc_{{ ethercalc_id }}
|
||||
ethercalc_group: "{{ ethercalc_user }}"
|
||||
|
||||
# Port on which ethercalc should bind
|
||||
ethercalc_port: 8000
|
||||
|
||||
# Optionally restrict source IP which will be allowed to connect
|
||||
# Undefined or an empty list means no access.
|
||||
ethercalc_src_ip:
|
||||
- 0.0.0.0/0
|
||||
|
||||
# This is the time for which inactive calc will be kept
|
||||
ethercalc_expire: 15552000
|
||||
|
||||
# URI of the git repository
|
||||
ethercalc_git_uri: https://github.com/audreyt/ethercalc.git
|
||||
|
||||
# Version to deploy
|
||||
ethercalc_version: HEAD
|
||||
|
||||
...
|
Reference in New Issue
Block a user