Skip to content

Commit da347fc

Browse files
committed
update
1 parent d8c8448 commit da347fc

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

gateway-service/src/main/resources/application-docker.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spring:
99
gateway:
1010
routes:
1111
- id: identity_service
12-
uri: https://identity-service:8080
12+
uri: http://identity-service:8080
1313
predicates:
1414
- Path=${app.api-prefix}/identity/**
1515
filters:
@@ -18,7 +18,7 @@ spring:
1818
args:
1919
routeId: identity_service
2020
- id: profile_service
21-
uri: https://profile-service:8081
21+
uri: http://profile-service:8081
2222
predicates:
2323
- Path=${app.api-prefix}/profile/**
2424
filters:
@@ -27,7 +27,7 @@ spring:
2727
args:
2828
routeId: profile_service
2929
- id: file_service
30-
uri: https://file-service:8082
30+
uri: http://file-service:8082
3131
predicates:
3232
- Path=${app.api-prefix}/file/**
3333
filters:
@@ -36,7 +36,7 @@ spring:
3636
args:
3737
routeId: file_service
3838
- id: submission_service
39-
uri: https://submission-service:8083
39+
uri: http://submission-service:8083
4040
predicates:
4141
- Path=${app.api-prefix}/submission/**
4242
filters:
@@ -45,7 +45,7 @@ spring:
4545
args:
4646
routeId: submission_service
4747
- id: coding_service
48-
uri: https://coding-service:8084
48+
uri: http://coding-service:8084
4949
predicates:
5050
- Path=${app.api-prefix}/coding/**
5151
filters:
@@ -54,7 +54,7 @@ spring:
5454
args:
5555
routeId: coding_service
5656
- id: quiz_service
57-
uri: https://quiz-service:8085
57+
uri: http://quiz-service:8085
5858
predicates:
5959
- Path=${app.api-prefix}/quiz/**
6060
filters:
@@ -63,7 +63,7 @@ spring:
6363
args:
6464
routeId: quiz_service
6565
- id: ai_service
66-
uri: https://ai-service:8086
66+
uri: http://ai-service:8086
6767
predicates:
6868
- Path=${app.api-prefix}/ai/**
6969
filters:
@@ -72,7 +72,7 @@ spring:
7272
args:
7373
routeId: ai_service
7474
- id: search_service
75-
uri: https://search-service:8087
75+
uri: http://search-service:8087
7676
predicates:
7777
- Path=${app.api-prefix}/search/**
7878
filters:
@@ -81,7 +81,7 @@ spring:
8181
args:
8282
routeId: search_service
8383
- id: notification_service
84-
uri: https://notification-service:8088
84+
uri: http://notification-service:8088
8585
predicates:
8686
- Path=${app.api-prefix}/notification/**
8787
filters:
@@ -90,7 +90,7 @@ spring:
9090
args:
9191
routeId: notification_service
9292
- id: chat_service
93-
uri: https://chat-service:8089
93+
uri: http://chat-service:8089
9494
predicates:
9595
- Path=${app.api-prefix}/chat/**
9696
filters:
@@ -100,7 +100,7 @@ spring:
100100
routeId: chat_service
101101
- id: post_service
102102
# uri: https://post-service:8090
103-
uri: https://post-service:8090
103+
uri: http://post-service:8090
104104
predicates:
105105
- Path=${app.api-prefix}/post/**
106106
filters:
@@ -110,7 +110,7 @@ spring:
110110
routeId: post_service
111111
- id: payment_service
112112
# uri: https://payment-service:8091
113-
uri: https://payment-service:8091
113+
uri: http://payment-service:8091
114114
predicates:
115115
- Path=${app.api-prefix}/payment/**
116116
filters:
@@ -120,7 +120,7 @@ spring:
120120
routeId: payment_service
121121
- id: organization_service
122122
# uri: https://organization-service:8092
123-
uri: https://organization-service:8092
123+
uri: http://organization-service:8092
124124
predicates:
125125
- Path=${app.api-prefix}/org/**
126126
filters:
@@ -131,4 +131,4 @@ spring:
131131

132132
identity:
133133
service:
134-
base-url: https://identity-service:8080/identity
134+
base-url: http://identity-service:8080/identity

identity-service/src/main/java/com/codecampus/identity/IdentityApplication.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@ static void main(String[] args) {
1111
SpringApplication.run(IdentityApplication.class, args);
1212
}
1313
}
14-

0 commit comments

Comments
 (0)