You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
882 B
33 lines
882 B
5 years ago
|
---
|
||
|
|
||
|
# 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
|
||
|
|
||
|
...
|