forked from donfanning/zenboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzenboot.Docker.properties
74 lines (63 loc) · 2.43 KB
/
zenboot.Docker.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
# SCRIPTING / PROCESSING
#=======================
# Execute processes asynchronously (set this to FALSE for development to get all exceptions)
zenboot.processing.asynchron=true
# Number of worker threads used for asynchronous processing needs to be >0
zenboot.processing.workerThreads=10
# Runtime attributes (CSV string, used for script file resolution)
zenboot.processing.attributes=
# Zenboot script dir
zenboot.processing.scriptDir=/home/user/zenboot/zenboot-scripts
# TEAMPLATES
#===========
# Temp file to explode the import zip
zenboot.template.tempDir=/tmp/zenboot
# SYSTEM
#==================
# Define in which environment zenboot is running (allowed values are defined in org.zenboot.portal.Environment)
zenboot.environment=development
# Timeout for executed shell processes (sec)
zenboot.process.timeout=1000
## MAIL CONFIGURATION (Attention: in development mode is always SSL enabled, which is perfect to connect to Googlemail)
# SMTP host
grails.mail.host=smtp.googlemail.com
# SMTP post
grails.mail.port=465
# SMTP username
grails.mail.username=your-gmail-account@googlemail.com
# SMTP password
grails.mail.password=your-password
# ip-address of host-system needed to get jmx to work
java.rmi.server.hostname=192.168.178.16
# LDAP
# default = 'mail'
zenboot.security.ldap.fields.user.email=mail
# default = 'displaynameprintable'
zenboot.security.ldap.fields.user.displayName=displaynameprintable
# DATABASE (OPTIONAL - set this section if you don't want to use H2)
#===========================================================================
# The default (if you don't define anything here) looks like this right now:
# one of 'create', 'create-drop', 'update', 'validate', ''
#dataSource.dbCreate=create-drop
# hsql-InMemory:
#dataSource.url = "jdbc:h2:mem:devDb;MVCC=TRUE"
# For MySQL:
# Database username
#dataSource.username=
# Database password
#dataSource.password=
# Database driver class
#dataSource.driverClassName=com.mysql.jdbc.Driver
# Database Hibernate dialect
#dataSource.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
# Database DSN
#dataSource.url=jdbc:mysql://localhost:3306/zenboot
# For H2:
# Database DSN
dataSource.url=jdbc:h2:file:/tmp/h2-zenboot;MVCC=TRUE
# Database Hibernate dialect
dataSource.dialect=org.hibernate.dialect.H2Dialect
# how Hibernate will deploy changes in the database model (one of 'create', 'create-drop', 'update', 'validate', '')
dataSource.dbCreate=create
#dataSource.logSql = true
#dataSource.formatSql = true