-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapplication.properties
49 lines (40 loc) · 1.43 KB
/
application.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
spring.main.web-application-type=none
# Alfresco Database
spring.datasource.url=jdbc:postgresql://localhost/alfresco
spring.datasource.username=alfresco
spring.datasource.password=alfresco
spring.datasource.driver-class-name=org.postgresql.Driver
# Alfresco SOLR endpoint
solr.url=http://localhost:8983/solr
# Communication mode (NONE, HTTPS, SECRET)
solr.comms=NONE
# Add secret word (only to be used for solr.comms=SECRET)
solr.secret=
#Basic auth properties in case you are using solr.comms=none with basic auth
solr.user=
solr.password=
# mTLS / HTTPS keystores (only to be used for solr.comms=HTTPS)
solr.mtls.keystore.path=
solr.mtls.keystore.type=
solr.mtls.keystore.pass=
solr.mtls.truststore.path=
solr.mtls.truststore.type=
solr.mtls.truststore.pass=
# Validation options (true / false)
validation.nodes=true
validation.permissions=true
# Validation batch size
validation.nodes.batch.size=1000
validation.permissions.batch.size=1000
# Produce detail report on missing nodes or permissions (true / false)
report.detailed=false
# Perform fix actions in SOLR Index:
# - DELETE nodes existing in SOLR but missing in DB
# - REINDEX nodes existing in DB but missing in SOLR
run.fix.actions=false
# Log settings
logging.pattern.console=%d{HH:mm:ss.SSS} %gray(%class{1}) - %highlight(%msg%n)
spring.main.banner-mode=off
logging.level.com.zaxxer.hikari=ERROR
logging.level.org.alfresco.indexchecker.App=ERROR
logging.level.org.alfresco.indexchecker=INFO