-
Notifications
You must be signed in to change notification settings - Fork 33
/
default.properties
153 lines (116 loc) · 4.4 KB
/
default.properties
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# This file holds some property shared across all geOrchestra webapps
# All properties in this file MUST be present. Do not comment any of them, they
# do not have a default value. Adapt them according to the needs of your
# instance.
# Domain name of the geOrchestra instance
# URL must not include the trailing slash
# Once modified, adapt the following files accordingly:
# - cas/cas.properties
# - ...
# or replace all the strings with `sed` (see README.md)
domainName=georchestra.mydomain.org
# Name of this geOrchestra instance
instanceName=geOrchestra
# Default language
language=en
# Header script for web component header
# https://github.com/georchestra/header
headerScript=https://cdn.jsdelivr.net/gh/georchestra/header@dist/header.js
# Header height (size in px)
# If different from default value "90", adapt analytics/js/GEOR_custom.js
# accordingly
headerHeight=90
# Variable use to keep the old iframe header.
# Set headerUrl accordingly
# Default false
useLegacyHeader=false
# Header URL (can be absolute or relative). It is used only if useLegacyHeader is set to true.
# If different from default value "/header/", adapt
# security-proxy/targets-mapping.properties accordingly
# default /header/
headerUrl=/header/
# Stylesheet used to override default colors of header
# More design can be set by overriding default classes & styles
# Default empty string
# georchestraStylesheet=http://my-domain-name/stylesheet.css
# Logo URL
# Used to set header's logo.
logoUrl=https://www.georchestra.org/public/georchestra-logo.svg
# Administrator email
# Default email address used to send and receive mails in console
# See the corresponding properties files to override this email
# address for specific needs.
### PostgreSQL properties
# PostgreSQL server domain name
# Domain name, or IP address, of the PostgreSQL server
pgsqlHost=localhost
# PostgreSQL server port
# Listening port of the PostgreSQL server
pgsqlPort=5432
# PostgreSQL database name
# Default common PostgreSQL database for all geOrchestra modules
pgsqlDatabase=georchestra
# User to connect to PostgreSQL server
# Default common PostgreSQL user for all geOrchestra modules
pgsqlUser=georchestra
# Password to connect to PostgreSQL server
# Default common password of PostgreSQL user for all geOrchestra modules
pgsqlPassword=georchestra
### rabbitmq properties
# Activate/desactivate Rabbitmq
enableRabbitmqEvents=false
# rabbitmq server domain name
rabbitmqHost=localhost
# rabbitmq user
rabbitmqUser=georchestra
# rabbitmq password
rabbitmqPassword=georchestra
# rabbitmq port
rabbitmqPort=5672
### LDAP properties
# LDAP server domain name
# Domain name, or IP address, of the LDAP server
ldapHost=localhost
# LDAP server port
# Listening port of the LDAP server
ldapPort=389
# LDAP Scheme
# ldap or ldaps
ldapScheme=ldap
# Base DN of the LDAP directory
# Base Distinguished Name of the LDAP directory. Also named root or suffix, see
# http://www.zytrax.com/books/ldap/apd/index.html#base
ldapBaseDn=dc=georchestra,dc=org
# Administrator DN
# Distinguished name of the administrator user that connects to the LDAP server
ldapAdminDn=cn=admin,dc=georchestra,dc=org
# Administrator password
# Password of the administrator user that connects to the LDAP server
ldapAdminPassword=secret
# Users RDN
# Relative distinguished name of the "users" LDAP organization unit. E.g. if the
# complete name (or DN) is ou=users,dc=georchestra,dc=org, the RDN is ou=users.
ldapUsersRdn=ou=users
# Roles RDN
# Relative distinguished name of the "roles" LDAP organization unit. E.g. if the
# complete name (or DN) is ou=roles,dc=georchestra,dc=org, the RDN is ou=roles.
ldapRolesRdn=ou=roles
# Organizations RDN
# Relative distinguished name of the "orgs" LDAP organization unit. E.g. if the
# complete name (or DN) is ou=orgs,dc=georchestra,dc=org, the RDN is ou=orgs.
ldapOrgsRdn=ou=orgs
### SMTP properties
# SMTP server domain name
# Domain name, or IP address, of the SMTP server
smtpHost=localhost
# SMTP server domain name
# Listening port of the SMTP server
smtpPort=25
# Activates analytics
# WARNING : When using the geOrchestra gateway, analytics should be disabled
# if set to true, the analytics app will be enabled (https://github.com/georchestra/georchestra/tree/master/analytics)
# console will add all links to analytics and also execute XHR requests
# header will diplay analytics app
# default: true
analyticsEnabled=false