Skip to content

Commit

Permalink
Merge pull request #43 from MichiBaum/develop
Browse files Browse the repository at this point in the history
Update SSL configuration across services
  • Loading branch information
MichiBaum authored Oct 26, 2024
2 parents 43904cf + 675e134 commit cca430a
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 16 deletions.
5 changes: 3 additions & 2 deletions admin-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
server:
port: 80
ssl:
bundle: “web-server
bundle: "server"
client-auth: WANT

spring:
Expand All @@ -20,12 +20,13 @@ spring:
ssl:
bundle:
jks:
web-server:
server:
key:
alias: "michibaum"
keystore:
location: "/data/ssl/keystore.p12"
password: ${SSL_KEYSTORE_PASSWORD}
type: "PKCS12"

eureka:
client:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
server:
port: 80
ssl:
bundle: “web-server
bundle: "server"
client-auth: WANT

spring:
Expand All @@ -16,12 +16,13 @@ spring:
ssl:
bundle:
jks:
web-server:
server:
key:
alias: "michibaum"
keystore:
location: "/data/ssl/keystore.p12"
password: ${SSL_KEYSTORE_PASSWORD}
type: "PKCS12"



Expand Down
5 changes: 3 additions & 2 deletions chess-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
server:
port: 80
ssl:
bundle: “web-server
bundle: "server"
client-auth: WANT

spring:
Expand All @@ -16,12 +16,13 @@ spring:
ssl:
bundle:
jks:
web-server:
server:
key:
alias: "michibaum"
keystore:
location: "/data/ssl/keystore.p12"
password: ${SSL_KEYSTORE_PASSWORD}
type: "PKCS12"

eureka:
client:
Expand Down
5 changes: 3 additions & 2 deletions fitness-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
server:
port: 80
ssl:
bundle: “web-server
bundle: "server"
client-auth: WANT

spring:
Expand All @@ -16,12 +16,13 @@ spring:
ssl:
bundle:
jks:
web-server:
server:
key:
alias: "michibaum"
keystore:
location: "/data/ssl/keystore.p12"
password: ${SSL_KEYSTORE_PASSWORD}
type: "PKCS12"

eureka:
client:
Expand Down
5 changes: 3 additions & 2 deletions gateway-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server:
ssl:
bundle: “web-server
bundle: "server"
client-auth: WANT

spring:
Expand All @@ -15,12 +15,13 @@ spring:
ssl:
bundle:
jks:
web-server:
server:
key:
alias: "michibaum"
keystore:
location: "/data/ssl/keystore.p12"
password: ${SSL_KEYSTORE_PASSWORD}
type: "PKCS12"

eureka:
client:
Expand Down
5 changes: 3 additions & 2 deletions registry-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server:
ssl:
bundle: “web-server
bundle: "server"
client-auth: WANT

spring:
Expand All @@ -15,12 +15,13 @@ spring:
ssl:
bundle:
jks:
web-server:
server:
key:
alias: "michibaum"
keystore:
location: "/data/ssl/keystore.p12"
password: ${SSL_KEYSTORE_PASSWORD}
type: "PKCS12"

eureka:
client:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
server:
port: 80
ssl:
bundle: “web-server
bundle: "server"
client-auth: WANT

spring:
Expand All @@ -16,12 +16,13 @@ spring:
ssl:
bundle:
jks:
web-server:
server:
key:
alias: "michibaum"
keystore:
location: "/data/ssl/keystore.p12"
password: ${SSL_KEYSTORE_PASSWORD}
type: "PKCS12"

eureka:
client:
Expand Down
5 changes: 3 additions & 2 deletions website-service/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
server:
port: 80
ssl:
bundle: “web-server
bundle: "server"
client-auth: WANT

spring:
Expand All @@ -16,12 +16,13 @@ spring:
ssl:
bundle:
jks:
web-server:
server:
key:
alias: "michibaum"
keystore:
location: "/data/ssl/keystore.p12"
password: ${SSL_KEYSTORE_PASSWORD}
type: "PKCS12"

eureka:
client:
Expand Down

0 comments on commit cca430a

Please sign in to comment.