-
Notifications
You must be signed in to change notification settings - Fork 3
/
application.yml
57 lines (57 loc) · 1.11 KB
/
application.yml
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
spring:
profiles:
default: local
jackson:
default-property-inclusion: non_null
mail:
host: smtp-mail.outlook.com
port: 587
username: ${EMAIL_USERNAME}
password: ${EMAIL_PASSWORD}
properties:
mail:
smtp:
auth: true
starttls:
enable: true
jwt:
secret: ${JWT_KEY}
session:
timeout: 300
store-type: redis
redis:
namespace: spring:session
cloud:
aws:
region:
static: ${AWS_REGION_NAME}
s3:
bucket: ${AWS_BUCKET_NAME}
stack:
auto: false
logging:
level:
com:
amazonaws:
util:
EC2MetadataUtils: error
security:
oauth2:
client:
registration:
google:
client-id: ${GOOGLE_CLIENT_ID}
client-secret: ${GOOGLE_CLIENT_SECRET}
scope: profile,email
custom:
oauth2:
kakao:
client-id: ${KAKAO_CLIENT_ID}
client-secret: ${KAKAO_CLIENT_SECRET}
redirect:
back: ${BACK_REDIRECT_URL}
front: ${FRONT_REDIRECT_URL}
sms:
api-key: ${SMS_API_KEY}
api-secret: ${SMS_API_SECRET}
source: ${SMS_SOURCE}