|
| 1 | +server: |
| 2 | + port: 80 |
| 3 | + |
| 4 | +spring: |
| 5 | + datasource: |
| 6 | + url: ${sm://db-url} |
| 7 | + username: ${sm://db-username} |
| 8 | + password: ${sm://db-password} |
| 9 | + hikari: |
| 10 | + connection-timeout: 30000 |
| 11 | + maximum-pool-size: 10 |
| 12 | + driver-class-name: com.mysql.cj.jdbc.Driver |
| 13 | + jpa: |
| 14 | + hibernate: |
| 15 | + ddl-auto: update |
| 16 | + open-in-view: false |
| 17 | + properties: |
| 18 | + hibernate: |
| 19 | + jdbc: |
| 20 | + lob: |
| 21 | + non_contextual_creation: true |
| 22 | + id: |
| 23 | + new_generator_mappings: true |
| 24 | + docker: |
| 25 | + compose: |
| 26 | + lifecycle-management: start-only |
| 27 | + data: |
| 28 | + redis: |
| 29 | + host: ${sm://redis-host} |
| 30 | + port: ${sm://redis-port} |
| 31 | + username: default |
| 32 | + password: ${sm://redis-password} |
| 33 | + ssl: |
| 34 | + enabled: true |
| 35 | + security: |
| 36 | + oauth2: |
| 37 | + client: |
| 38 | + registration: |
| 39 | + google: |
| 40 | + client-name: google |
| 41 | + client-id: ${sm://google-client-id} |
| 42 | + client-secret: ${sm://google-client-secret} |
| 43 | + redirect-uri: "https://api.ittaeok.com/login/oauth2/code/{registrationId}" # SM 붙이기 |
| 44 | + authorization-grant-type: authorization_code |
| 45 | + scope: |
| 46 | + - openid |
| 47 | + - email |
| 48 | + - profile |
| 49 | + kakao: |
| 50 | + client-name: kakao |
| 51 | + client-id: ${sm://kakao-client-id} |
| 52 | + client-secret: ${sm://kakao-client-secret} |
| 53 | + redirect-uri: "https://api.ittaeok.com/login/oauth2/code/{registrationId}" # SM 붙이기 |
| 54 | + authorization-grant-type: authorization_code |
| 55 | + client-authentication-method: client_secret_post |
| 56 | + scope: |
| 57 | + - profile_nickname |
| 58 | + - account_email |
| 59 | + provider: |
| 60 | + kakao: |
| 61 | + authorization-uri: https://kauth.kakao.com/oauth/authorize |
| 62 | + token-uri: https://kauth.kakao.com/oauth/token |
| 63 | + user-info-uri: https://kapi.kakao.com/v2/user/me |
| 64 | + user-name-attribute: id |
| 65 | +springdoc: |
| 66 | + pathsToMatch: /api/** |
| 67 | +jwt: |
| 68 | + expiration: 604800000 |
| 69 | + refresh-expiration: 704800000 |
| 70 | + secret: ${sm://jwt-secret} |
| 71 | +google: |
| 72 | + calendar: |
| 73 | + client-id: ${sm://google-client-id} |
| 74 | + client-secret: ${sm://google-client-secret} |
| 75 | + redirect-uri: "https://api.ittaeok.com/oauth2/callback/google-calendar" # SM 붙이기 |
| 76 | + api: |
| 77 | + key: ${sm://google-api-key} |
| 78 | +zoom: |
| 79 | + client-id: ${sm://zoom-client-id} |
| 80 | + client-secret: ${sm://zoom-client-secret} |
| 81 | + redirect-uri: ${sm://zoom-redirect-uri} |
| 82 | + refresh-token: ${sm://zoom-refresh-token} |
| 83 | +kakao: |
| 84 | + middle-location: |
| 85 | + api-key: ${sm://kakao-api-key} |
| 86 | +logging: |
| 87 | + level: |
| 88 | + org.springframework.cloud.gcp.secretmanager: DEBUG |
| 89 | + root: info |
| 90 | + org: |
| 91 | + hibernate: |
| 92 | + SQL: info |
| 93 | + type: |
| 94 | + descriptor: |
| 95 | + sql: info |
| 96 | + |
| 97 | +url: |
| 98 | + backend: https://api.ittaeok.com # SM 붙이기 |
| 99 | +front-server: |
| 100 | + domain-A: https://ittaeok.com # SM 붙이기 |
| 101 | + domain-B: https://www.ittaeok.com # SM 붙이기 |
| 102 | + redirect-url: https://ittaeok.com/auth/callback # SM 붙이기 |
0 commit comments