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.
47 lines
1.7 KiB
47 lines
1.7 KiB
---
|
|
|
|
# You can install several instances of etherpad on the same server
|
|
# They should each get their own ID and port
|
|
etherpad_id: 1
|
|
# Where etherpad will be installed
|
|
etherpad_root_dir: /opt/etherpad_{{ etherpad_id }}
|
|
# Unix account under which etherpad will run. The user will be created if it doesn't exist
|
|
etherpad_user: etherpad_{{ etherpad_id }}
|
|
# Version to deploy
|
|
etherpad_version: 1.8.15
|
|
# URL from where the archive will be downloaded
|
|
etherpad_archive_url: https://github.com/ether/etherpad-lite/archive/{{ etherpad_version }}.tar.gz
|
|
# Expected sha1 of the archive, to check the download were OK
|
|
etherpad_archive_sha1: c7995d0418c919d97e62c941e70fb20940ce7b35
|
|
# Port on which the service will listen
|
|
etherpad_port: 9003
|
|
# List of IP/CIDR for which the port will be opened (if iptables_manage == True)
|
|
etherpad_src_ip: []
|
|
|
|
# Etherpad uses a MySQL compatible database
|
|
etherpad_db_name: etherpad_{{ etherpad_id }}
|
|
etherpad_db_user: etherpad_{{ etherpad_id }}
|
|
etherpad_db_port: 3306
|
|
etherpad_db_server: "{{mysql_server | default('localhost') }}"
|
|
# A random one is generated if not defined, and stored under {{ etherpad_root_dir }}/meta/ansible_dbpass
|
|
# etherpad_db_pass: s3cr3t.
|
|
|
|
# Page title
|
|
etherpad_title: Etherpad
|
|
# Default theme
|
|
etherpad_theme: colibris
|
|
|
|
# Admin password
|
|
# A random one will be created if not defined, and stored under {{ etherpad_root_dir }}/meta/ansible_admin_pass
|
|
# etherpad_admin_pass: p@ssw0rd
|
|
# The API Key
|
|
# A random one will be created if not defined, and stored under {{ etherpad_root_dir }}/meta/ansible_api_key
|
|
# etherpad_api_key: 123456
|
|
|
|
# List of plugins to install
|
|
etherpad_plugins_base:
|
|
- adminpads
|
|
- delete_after_delay
|
|
- delete_empty_pads
|
|
etherpad_plugins_extra: []
|
|
etherpad_plugins: "{{ etherpad_plugins_base + etherpad_plugins_extra }}"
|
|
|