blob: bee222e60d2ce3c7e08452b3de7ef96a22e7b494 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
spring.application.name=Apache Syncope ${syncope.version} Core
spring.groovy.template.check-template-location=false
spring.main.banner-mode=log
version=${syncope.version}
server.servlet.encoding.charset=UTF-8
server.servlet.encoding.enabled=true
server.servlet.encoding.force=true
conf.directory=${conf.directory}
server.servlet.contextPath=/syncope
cxf.path=/rest
management.endpoints.web.exposure.include=health,info,loggers,entityCache
management.endpoint.health.show-details=ALWAYS
service.discovery.address=http://localhost:8080/syncope/rest/
server.shutdown=graceful
spring.lifecycle.timeout-per-shutdown-phase=30s
###############
# Persistence #
###############
persistence.remoteCommitProvider=sjvm
persistence.domain[0].key=Master
persistence.domain[0].jdbcDriver=org.postgresql.Driver
persistence.domain[0].jdbcURL=jdbc:postgresql://localhost:5432/syncope?stringtype=unspecified
persistence.domain[0].dbUsername=syncope
persistence.domain[0].dbPassword=syncope
persistence.domain[0].databasePlatform=org.apache.openjpa.jdbc.sql.PostgresDictionary
persistence.domain[0].auditSql=audit.sql
persistence.domain[0].poolMaxActive=10
persistence.domain[0].poolMinIdle=2
################
# Provisioning #
################
provisioning.asyncConnectorFacadeExecutor.corePoolSize=5
provisioning.asyncConnectorFacadeExecutor.maxPoolSize=25
provisioning.asyncConnectorFacadeExecutor.queueCapacity=100
provisioning.propagationTaskExecutorAsyncExecutor.corePoolSize=5
provisioning.propagationTaskExecutorAsyncExecutor.maxPoolSize=25
provisioning.propagationTaskExecutorAsyncExecutor.queueCapacity=100
provisioning.virAttrCacheSpec=maximumSize=5000,expireAfterAccess=1m
provisioning.connIdLocation=${connid.location}
provisioning.quartz.delegate=org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
provisioning.quartz.sql=tables_postgres.sql
provisioning.quartz.disableInstance=false
provisioning.smtp.host=none.syncope.apache.org
provisioning.smtp.port=25
provisioning.smtp.username=
provisioning.smtp.password=
provisioning.smtp.protocol=smtp
provisioning.smtp.defaultEncoding=UTF-8
provisioning.smtp.debug=false
# Add more properties starting with mail.smtp.* from
# https://javaee.github.io/javamail/docs/api/com/sun/mail/smtp/package-summary.html#properties
provisioning.smtp.javamailProperties[mail.smtp.connectiontimeout]=3000
provisioning.smtp.javamailProperties[mail.smtp.starttls.enable]=false
############
# Security #
############
security.adminUser=${adminUser}
security.adminPassword=${adminPassword}
security.adminPasswordAlgorithm=SSHA256
security.anonymousUser=${anonymousUser}
security.anonymousKey=${anonymousKey}
security.jwtIssuer=ApacheSyncope
security.jwsAlgorithm=HS512
security.jwsKey=${jwsKey}
security.secretKey=${secretKey}
# default for LDAP / RFC2307 SSHA
security.digester.saltIterations=1
security.digester.saltSizeBytes=8
security.digester.invertPositionOfPlainSaltInEncryptionResults=true
security.digester.invertPositionOfSaltInMessageBeforeDigesting=true
security.digester.useLenientSaltSizeCheck=true
#########
# Logic #
#########
logic.enableJDBCAuditAppender=true
#########
# Disable CGLib Proxies #
#########
spring.aop.auto=true
spring.aop.proxy-target-class=false