This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.yml
87 lines (71 loc) · 2.08 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
## General
zanata_version: 4.2.1
zanata_container: wildfly
## System Properties
zanata_admin_users: []
## Service options
# Owner (setted same as container)
zanata_user: wildfly
zanata_group: wildfly
zanata_user_home: "/home/{{ zanata_user }}"
zanata_user_shell: "/bin/sh"
zanata_user_uid: 1005
# start on boot
zanata_service_enabled: True
# current state: started, stopped
zanata_service_state: started
# Files & Paths
zanata_skeleton_paths: /opt/zanata
zanata_container_install_path: "/opt/wildfly"
zanata_container_configuration_path: "{{ zanata_container_install_path }}/standalone/configuration"
zanata_conf_path: "/etc/zanata"
zanata_log_file_path: "{{ zanata_container_install_path }}/standalone/log"
zanata_wildfly_conf_path: "/etc/wildfly"
zanata_wildfly_running_configuration_file: "{{ zanata_wildfly_conf_path }}/standalone.conf"
zanata_conf_template_path: templates
# Log
zanata_log_file_name: server.log
zanata_log_console_enabled: "false"
zanata_log_console_level: INFO
zanata_log_file_enabled: "true"
zanata_log_file_level: INFO
zanata_log_file_rotatesize: 1024000
zanata_log_file_maxBackupIndex: 7
# Network
zanata_bind: 0.0.0.0
zanata_port: 8080 # Not 80
zanata_management_bind: 0.0.0.0
zanata_management_port: 9990
# Management
zanata_management_security_enabled: true
## DB Connection
zanata_db_host: localhost
zanata_db_port: 3306
zanata_db_name: zanata
zanata_db_encoding: UTF-8
zanata_db_user: zanata
zanata_db_password: zanatapw
## SMTP
zanata_email_default_from_address: no-reply@zanata.org
zanata_smtp_hostname: localhost
zanata_smtp_port: 25
## LDAP
zanata_ldap_authentication: false
zanata_ldap_server: localhost
zanata_ldap_port: 10389
zanata_ldap_dn: uid=admin,ou=system
zanata_ldap_password: secret
zanata_ldap_base_dn: ou=basicauth,ou=users,ou=axis,o=abc,c=au
zanata_ldap_filter: (uid={0})
zanata_ldap_role_dn: ou=basicauth,ou=users,ou=axis,o=abc,c=au
zanata_ldap_role_filter: (member={1})
zanata_ldap_role_attribute_id: cn
zanata_ldap_allow_empty_passwords: true
# DEBUG
zanata_system_log: false
# DEPENDENCIES
zanata_required_libs:
- unzip
# MISC
zanata_force_reinstall: false