Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 32 additions & 1 deletion article/article.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,35 @@ spring:
servlet:
multipart:
max-file-size: 10MB
max-request-size: 10MB
max-request-size: 10MB
security:
basic:
enabled: false
rabbitmq:
host: rabbitmq
port: 5672
username: guest
password: guest
cloud:
bus:
enabled: true
refresh:
enabled: true

management:
endpoints:
web:
exposure:
include: "*"
endpoint:
health:
show-details: always
security:
enabled: false # Spring Boot 2.0 이전용

logging:
level:
com.kitcha.article: DEBUG # 로그 레벨 설정 (DEBUG로 변경)

app:
test-message: "Cloud Bus 테스트 - 업데이트됨 - 2025-03-30 21:00"
21 changes: 20 additions & 1 deletion auth/authentication.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ spring:
jpa:
hibernate:
ddl-auto: update
rabbitmq:
host: rabbitmq
port: 5672
username: guest
password: guest
cloud:
bus:
enabled: true
refresh:
enabled: true

server:
port: 8091
Expand All @@ -19,4 +29,13 @@ eureka:
register-with-eureka: true
fetch-registry: true
service-url:
defaultZone: http://eureka:8761/eureka/
defaultZone: http://eureka:8761/eureka/

management:
endpoints:
web:
exposure:
include: "*"
endpoint:
health:
show-details: always
14 changes: 0 additions & 14 deletions board/board.properties

This file was deleted.

36 changes: 36 additions & 0 deletions board/board.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://kitchadb.cnqc2iqcsmsn.us-west-1.rds.amazonaws.com:3306/kitcha?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Seoul
username: kitcha
password: Corenova
jpa:
hibernate:
ddl-auto: update
show-sql: true
database-platform: org.hibernate.dialect.MySQL8Dialect
rabbitmq:
host: rabbitmq
port: 5672
username: guest
password: guest
cloud:
bus:
enabled: true
refresh:
enabled: true

eureka:
instance:
prefer-ip-address: true
client:
register-with-eureka: true
fetch-registry: true
service-url:
defaultZone: http://localhost:8761/eureka/

management:
endpoints:
web:
exposure:
include: refresh,health,info,busrefresh