Skip to content

Commit

Permalink
📝docs : yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DDonghyeo committed May 26, 2024
1 parent ae95943 commit 8df16db
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions apiGateway-service/src/main/resources/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ spring:
active: dev
cloud:
config:
uri: http://config:8888
uri: http://localhostß:8888
name: database-apiGateway, redis, jwt
kafka:
bootstrap-servers: "http://kafka:9092"
bootstrap-servers: "http://localhost:9092"
consumer:
group-id: "GroupId"

Expand All @@ -20,7 +20,7 @@ eureka:
register-with-eureka: true
fetch-registry: true
service-url:
defaultZone: http://eureka:8761/eureka
defaultZone: http://localhost:8761/eureka

#management: # Actuator Settings
# endpoints:
Expand Down
2 changes: 1 addition & 1 deletion noti-service/src/main/resources/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ eureka:
register-with-eureka: true # register to eureka server
fetch-registry: true # Getting instances' information from eureka server
service-url:
defaultZone : http://eureka:8761/eureka #Eureka Server's address
defaultZone : http://localhost:8761/eureka #Eureka Server's address
4 changes: 2 additions & 2 deletions user-service/src/main/resources/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spring:
active: dev
cloud:
config:
uri: http://config:8888
uri: http://localhost:8888
name: database-user,redis, jwt, smtp, apiDocs-user
kafka:
bootstrap-servers: "localhost:9092"
Expand All @@ -21,7 +21,7 @@ eureka:
register-with-eureka: true # register to eureka server
fetch-registry: true # Getting instances' information from eureka server
service-url:
defaultZone : http://eureka:8761/eureka #Eureka Server's address
defaultZone : http://localhost:8761/eureka #Eureka Server's address

#management: # Actuator
# endpoints:
Expand Down
4 changes: 2 additions & 2 deletions weather-service/src/main/resources/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spring:
active: dev
cloud:
config:
uri: http://config:8888
uri: http://localhost:8888
name: database-weather
kafka:
bootstrap-servers: "localhost:9092"
Expand All @@ -21,7 +21,7 @@ eureka:
register-with-eureka: true # register to eureka server
fetch-registry: true # Getting instances' information from eureka server
service-url:
defaultZone : http://eureka:8761/eureka #Eureka Server's address
defaultZone : http://localhost:8761/eureka #Eureka Server's address

management: # Actuator
endpoints:
Expand Down

0 comments on commit 8df16db

Please sign in to comment.