Skip to content

Commit

Permalink
Merge pull request #47 from MichiBaum/develop
Browse files Browse the repository at this point in the history
Switch Eureka URLs to HTTP
  • Loading branch information
MichiBaum authored Oct 26, 2024
2 parents 6e53fc2 + 1ea8a11 commit a2e0120
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion admin-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spring:
eureka:
client:
service-url:
defaultZone: https://registry-service:8761/eureka
defaultZone: http://registry-service:8761/eureka
instance:
secure-port-enabled: true
non-secure-port-enabled: false
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spring:
eureka:
client:
service-url:
defaultZone: https://registry-service:8761/eureka
defaultZone: http://registry-service:8761/eureka
instance:
secure-port-enabled: true
non-secure-port-enabled: false
2 changes: 1 addition & 1 deletion chess-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spring:
eureka:
client:
service-url:
defaultZone: https://registry-service:8761/eureka
defaultZone: http://registry-service:8761/eureka
instance:
secure-port-enabled: true
non-secure-port-enabled: false
2 changes: 1 addition & 1 deletion fitness-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spring:
eureka:
client:
service-url:
defaultZone: https://registry-service:8761/eureka
defaultZone: http://registry-service:8761/eureka
instance:
secure-port-enabled: true
non-secure-port-enabled: false
2 changes: 1 addition & 1 deletion gateway-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spring:
eureka:
client:
service-url:
defaultZone: https://registry-service:8761/eureka
defaultZone: http://registry-service:8761/eureka
instance:
secure-port-enabled: true
non-secure-port-enabled: false
30 changes: 15 additions & 15 deletions registry-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
server:
ssl:
bundle: "server"
client-auth: WANT
#server:
# ssl:
# bundle: "server"
# client-auth: WANT

spring:
microservices:
Expand All @@ -12,21 +12,21 @@ spring:
logging:
enabled: true
channel-id: ${DISCORD_REGISTRY_SERVICE_LOG_CHANNEL}
ssl:
bundle:
jks:
server:
key:
alias: "michibaum"
keystore:
location: "/data/ssl/keystore.p12"
password: ${SSL_KEYSTORE_PASSWORD}
type: "PKCS12"
# ssl:
# bundle:
# jks:
# server:
# key:
# alias: "michibaum"
# keystore:
# location: "/data/ssl/keystore.p12"
# password: ${SSL_KEYSTORE_PASSWORD}
# type: "PKCS12"

eureka:
client:
service-url:
defaultZone: https://registry-service:8761/eureka
defaultZone: http://registry-service:8761/eureka
instance:
secure-port-enabled: true
non-secure-port-enabled: false
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spring:
eureka:
client:
service-url:
defaultZone: https://registry-service:8761/eureka
defaultZone: http://registry-service:8761/eureka
instance:
secure-port-enabled: true
non-secure-port-enabled: false
2 changes: 1 addition & 1 deletion website-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spring:
eureka:
client:
service-url:
defaultZone: https://registry-service:8761/eureka
defaultZone: http://registry-service:8761/eureka
instance:
secure-port-enabled: true
non-secure-port-enabled: false

0 comments on commit a2e0120

Please sign in to comment.