-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.properties
42 lines (33 loc) · 1.37 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
logging.level.root=WARN
logging.level.net.findeasily=INFO
logging.file=/tmp/findeasily.log
spring.output.ansi.enabled=always
spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
spring.datasource.password=${JDBC_DATABASE_PASSWORD:}
spring.datasource.url=${JDBC_DATABASE_URL:}
spring.datasource.username=${JDBC_DATABASE_USERNAME:}
spring.datasource.hikari.connection-timeout=30000
spring.datasource.hikari.maximum-pool-size=10
spring.session.store-type=redis
spring.redis.host=${REDIS_HOST:}
spring.redis.password=${REDIS_PASSWORD:}
spring.mail.protocol=smtp
spring.mail.host=smtp.mailgun.org
spring.mail.port=587
spring.mail.username=${MAIL_USERNAME:}
spring.mail.password=${MAIL_PASSWORD:}
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
spring.devtools.restart.exclude=static/**,templates/**
spring.servlet.multipart.max-file-size=50MB
spring.servlet.multipart.max-request-size=50MB
spring.servlet.multipart.enabled=true
# this linked will be used in email
current.web.server=https://www.findeasily.net/
static.resource.host=https://static.findeasily.net/
file.upload.path=${FILE_UPLOAD_PATH:/var/findeasily/resources}
image.filename.extension=.png
google.map.api.key=${GOOGLE_MAP_API_KEY:}
google.recaptcha.site.key=${RECAPTCHA_SITE_KEY:}
google.recaptcha.secret.key=${RECAPTCHA_SECRET_KEY:}