-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.hcl
83 lines (69 loc) · 2 KB
/
config.hcl
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
exec {
#command = "su -u "tomcat" -c "the command to run""
command = "catalina.sh run"
}
template {
source = "templates/context.xml.ctmpl"
destination = "{{ env "CATALINA_HOME" }}/conf/context.xml"
perms = 0644
}
template {
source = "templates/geofence_config.xml.ctmpl"
destination = "{{ env "GEOSERVER_DATA_DIR" }}/security/auth/geofence/config.xml"
perms = 0644
}
template {
source = "templates/geofence.properties.ctmpl"
destination = "{{ env "GEOSERVER_DATA_DIR" }}/geofence/geofence.properties"
perms = 0644
}
template {
source = "templates/geofence-server.properties.ctmpl"
destination = "{{ env "GEOSERVER_DATA_DIR" }}/geofence/geofence-server.properties"
perms = 0644
}
template {
source = "templates/geogigconfig.ctmpl"
destination = "/usr/share/tomcat/.geogigconfig"
perms = 0644
}
template {
source = "templates/geonode-oauth2_config.xml.ctmpl"
destination = "{{ env "GEOSERVER_DATA_DIR" }}/security/filter/geonode-oauth2/config.xml"
perms = 0644
}
template {
source = "templates/geonodeRESTRoleService_config.xml.ctmpl"
destination = "{{ env "GEOSERVER_DATA_DIR" }}/security/role/geonode-oauth2/config.xml"
perms = 0644
}
template {
source = "templates/geoserver.xml.ctmpl"
destination = "/etc/tomcat/Catalina/localhost/geoserver.xml"
perms = 0644
}
template {
source = "templates/global.xml.ctmpl"
destination = "{{ env "GEOSERVER_DATA_DIR" }}/global.xml"
perms = 0644
}
template {
source = "templates/security_config.xml.ctmpl"
destination = "{{ env "GEOSERVER_DATA_DIR" }}/security/config.xml"
perms = 0644
}
template {
source = "templates/rest.properties.ctmpl"
destination = "{{ env "GEOSERVER_DATA_DIR" }}/security/rest.properties"
perms = 0644
}
template {
source = "templates/web.xml.ctmpl"
destination = "{{ env "WEBAPPS_DIR" }}/geoserver/WEB-INF/web.xml"
perms = 0644
}
template {
source = "templates/workspaces_geonode_settings.xml.ctmpl"
destination = "{{ env "GEOSERVER_DATA_DIR" }}/workspaces/geonode/settings.xml"
perms = 0644
}