-
Notifications
You must be signed in to change notification settings - Fork 7
/
vars.yml
39 lines (26 loc) · 1.83 KB
/
vars.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
---
# vars file for xwiki
xwiki_database: "{{ xwiki_user }}"
xwiki_database_user: "{{ xwiki_user }}"
xwiki_store_attachment_versioning_hint: "{{xwiki_store_attachment_hint}}"
xwiki_store_attachment_recyclebin_hint: "{{xwiki_store_attachment_hint}}"
# environment.permanentDirectory where persistent data is stored
xwiki_environment_permanent_directory: "{{xwiki_tomcat_path}}/persistent_data/"
xwiki_download_url: "http://download.forge.ow2.org/xwiki/xwiki-enterprise-web-{{ xwiki_version }}.war"
xwiki_path: "{{ xwiki_tomcat_path }}/catalina/xwiki"
# filename of XWiki war
xwiki_filename: xwiki-{{ xwiki_version }}.war
postgresql_default_auth_method: "md5"
# Restrict access to unix socket only to postgres user
postgresql_unix_socket_permissions: '0770' # begin with 0 to use octal notation
postgresql_pg_hba_default:
- { type: local, database: all, user: '{{ postgresql_admin_user }}', address: '', method: 'trust', comment: '' }
- { type: host, database: '{{xwiki_database}}', user: '{{xwiki_database_user}}', address: '127.0.0.1/32', method: 'md5', comment: '' }
postgresql_version: "{{ xwiki_postgresql_version }}"
postgresql_jdbc_driver_filename: "postgresql-{{ postgresql_jdbc_driver_version }}.jar"
postgresql_jdbc_driver_url: "https://jdbc.postgresql.org/download/{{ postgresql_jdbc_driver_filename }}"
xwiki_clojure_filename: "clojure-{{ xwiki_clojure_version }}.jar"
xwiki_clojure_download_url: "http://search.maven.org/remotecontent?filepath=org/clojure/clojure/{{ xwiki_clojure_version }}/{{ xwiki_clojure_filename }}"
xwiki_clojure_jsr223_download_url: "https://github.com/rastandy/clj-jsr223/releases/download/{{ xwiki_clojure_jsr223_version }}/{{ xwiki_clojure_jsr223_filename }}"
xwiki_clojure_jsr223_sha256sum: b7eab1434f278c9282413c947fbddd4b363602369e17d599c44cefee2fda2847
tomcat_server_systemd_template: tomcat_xwiki_service_systemd.j2