source: main/trunk/greenstone3/src/ansible-playbooks/vars/default-core.yml@ 38565

Last change on this file since 38565 was 38565, checked in by davidb, 5 months ago

Additional tasks added to target commenting/uncomments revproxy lines in build.properties

File size: 2.8 KB
Line 
1---
2# gsdl3srchome: /home/{{ ansible_user }}/greenstone3-svn
3# gsdl3srchome: /mnt/<mydisk>/greenstone3-svn
4gsdl3srchome: /mnt/intermuse/greenstone3-ansible-svn
5
6digital_librarian_info: {
7 fullname: "Sam Someone",
8 email: "[email protected]"
9}
10
11# To allow tech-support to be someone different ...
12tech_support_info: {
13 fullname: "Terry Tother",
14 email: "[email protected]"
15}
16
17gsdl3servlet_internal: {
18 protocol: "http",
19 domain: "localhost",
20
21 # For testing purposes, work with a '63' range
22 #port: "8383",
23 port: "6363",
24
25 context: "greenstone3",
26 servlet: "library"
27}
28
29
30gsdl3_buildproperties_ports: {
31 "localhost.port.http": "{{ gsdl3servlet_internal.explicit_port }}",
32
33 #"tomcat.shutdown.port": 8305,
34 #"tomcat.ajp.port": 8309,
35 #"derby.server.port": 8327,
36 #"tomcat.port.https": 8443
37
38 # For testing purposes, work with a '63' range and 64 for https
39 "tomcat.shutdown.port": 6305,
40 "tomcat.ajp.port": 6309,
41 "derby.server.port": 6327,
42 "tomcat.port.https": 6443
43}
44
45gsdl3servlet_external: {
46 protocol: "http",
47 #protocol: "https",
48 #domain: "<mygreenstone-dl>.<mydomain.org>",
49 domain: "ansible-test.sowemustthink.space",
50 #port: "80", # only need to set this if using 'http' and *not* using '80'
51 #port: "443", # only need to set this if using 'https' and *not* using '443'
52 context: "greenstone3",
53 servlet: "library"
54}
55
56# Using Apache2 as a reverse-proxy server?
57apache2_as_revproxy: true
58
59apache2_revproxy_config: {
60 #
61 # The following is typically kept the same as the subdomain part of gsdl3servlet_external.domain
62 # This is done automatically in the following line using default()
63 #
64 # If you want to set this to a different value, then edit '' to include the desired value
65 #
66 config_root_name: "{{ '' | default(gsdl3servlet_external['domain'].split('.') | first(),true) }}",
67
68 serveradmin_email: "{{ tech_support_info.email }}",
69 webserver_name: "{{ gsdl3servlet_external.domain }}",
70 http_port: "80",
71 https_port: "443"
72}
73
74#----
75
76gsdl3_buildproperties_revproxy: {
77 "revproxy.protocol": "{{ gsdl3servlet_external.protocol }}",
78 "revproxy.domain": "{{ gsdl3servlet_external.domain }}",
79 "revproxy.opt_port": "{{ gsdl3servlet_external.port | default('') }}",
80 "revproxy.context": "{{ '/'+gsdl3servlet_external.context | default('') }}"
81}
82
83
84#apache2_serveradmin_email: tech_support_info.email
85#apache2_webserver_name: gsdl3servlet_external.domain
86#
87##apache2_servername: "mygreenstone-dl"
88##apache2_servername_fqdn: "{{ apache2_servername }}.mydomain.org"
89#
90#apache2_serveradmin_email: "[email protected]"
91#apache2_servername: "ansible-test"
92#apache2_servername_fqdn: "{{ apache2_servername }}.sowemustthink.space"
93
94#apache2_http_port: "80"
95#apache2_http_conf: "{{ apache2_servername }}.conf"
96
97
98
99
100#disable_default: false
Note: See TracBrowser for help on using the repository browser.