argos/dmp-backend/web/src/main/resources/application.properties

81 lines
2.8 KiB
Properties
Raw Normal View History

2018-01-17 13:03:51 +01:00
server.port=8080
server.tomcat.max-threads = 20
server.tomcat.max-connections = 10000
2018-01-17 13:03:51 +01:00
logging.file=/logs/spring-boot-logging.log
spring.profiles.active=devel
2018-06-27 12:29:21 +02:00
eu.eudat.logic.proxy.allowed.host=https://eestore.paas2.uninett.no
2018-05-14 08:44:35 +02:00
####################INVITATION MAIL CONFIGURATIONS##############
####################GENERIC MAIL CONFIGURATIONS#################
mail.subject=Invitation to DMP Plan {dmpname}
2018-11-27 15:13:56 +01:00
mail.from=
####################SPRING MAIL CONFIGURATIONS#################
2018-01-12 17:32:47 +01:00
spring.mail.default-encoding=UTF-8
2018-11-27 15:13:56 +01:00
spring.mail.host=
spring.mail.username=
spring.mail.password=
spring.mail.port=
spring.mail.protocol=
2018-01-12 17:32:47 +01:00
spring.mail.test-connection=false
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
#############LOGIN CONFIGURATIONS#########
#############GENERIC LOGIN CONFIGURATIONS#########
autouser.root.email=root@dmp.com
autouser.root.password=root
autouser.root.username=root
#############FACEBOOK LOGIN CONFIGURATIONS#########
2018-11-27 15:13:56 +01:00
facebook.login.clientId=
facebook.login.clientSecret=
facebook.login.namespace=
#############GOOGLE LOGIN CONFIGURATIONS#########
2018-11-27 15:13:56 +01:00
google.login.clientId=
#############LINKEDIN LOGIN CONFIGURATIONS#########
2018-11-27 15:13:56 +01:00
linkedin.login.clientId=
linkedin.login.clientSecret=
2018-09-18 14:41:24 +02:00
linkedin.login.redirect_uri=http://opendmp.eu/login/linkedin
#############TWITTER LOGIN CONFIGURATIONS#########
2018-11-27 15:13:56 +01:00
twitter.login.clientId=
twitter.login.clientSecret=
2018-09-18 14:41:24 +02:00
twitter.login.redirect_uri=http://opendmp.eu/login/twitter
#############B2 ACCESS CONFIGURATIONS#########
2018-03-06 15:58:38 +01:00
b2access.externallogin.user_info_url=https://b2access-integration.fz-juelich.de:443/oauth2/userinfo
b2access.externallogin.access_token_url=https://b2access-integration.fz-juelich.de:443/oauth2/token
2018-09-18 14:41:24 +02:00
b2access.externallogin.redirect_uri=http://opendmp.eu/api/oauth/authorized/b2access
2018-11-27 15:13:56 +01:00
b2access.externallogin.clientid=
b2access.externallogin.clientSecret=
#############FILE STORAGE CONFIGURATIONS#########
2018-03-19 13:40:04 +01:00
files.storage.temp = temp
2018-03-28 15:24:47 +02:00
files.storage.final = final
#############DYNAMIC PROJECT CONFIGURATIONS#########
2018-03-28 15:24:47 +02:00
project.configuration.project.name = Project
project.configuration.funder.name = Funder
2018-06-05 10:18:01 +02:00
project.configuration.grant.name = Grant
#############HTTP LOGGER DELAY CONFIGURATIONS#########
2018-06-05 10:18:01 +02:00
http-logger.initial-delay = 0
http-logger.delay = 10
##########################PERISTENCE##########################################
#############GENERIC DATASOURCE CONFIGURATIONS#########
database.driver-class-name=org.postgresql.Driver
#############SPRING DATASOURCE CONFIGURATIONS#########
2018-10-02 16:33:58 +02:00
spring.datasource.maxIdle: 10
spring.datasource.max-active: 70
spring.datasource.max-wait: 10000
spring.datasource.validationQuery: select 1
spring.datasource.removeAbandoned: true
spring.datasource.removeAbandonedTimeout: 1
spring.datasource.logAbandoned: true
spring.datasource.testOnBorrow: true
spring.datasource.testOnConnect: false
spring.datasource.testWhileIdle: false