Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
server:
ssl:
key-store: classpath:keystore/itmo-dating-external.p12
key-store-password: ${ITMO_DATING_EXT_KEY_STORE_PASSWORD}
6 changes: 1 addition & 5 deletions backend/gateway/src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
spring:
config:
import: application-monitoring.yml,application-service-discovery.yml,application-tls.yml
import: application-monitoring.yml,application-service-discovery.yml,application-tls.yml,application-gateway-external-tls.yml
application:
name: gateway
cloud:
Expand Down Expand Up @@ -132,10 +132,6 @@ spring:
predicates:
- Method=GET
- Path=/api/locations
server:
ssl:
key-store: classpath:keystore/itmo-dating-external.p12
key-store-password: ${ITMO_DATING_EXT_KEY_STORE_PASSWORD}
springdoc:
swagger-ui:
path: /swagger-ui.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ spring:
tls:
key-store-instance-type: JKS
certificate-path: keystore/itmo-dating-backend.jks
certificate-password: ${server.ssl.key-store-password}
certificate-password: ${client.ssl.key-store-password}
key-store-path: keystore/itmo-dating-backend.jks
key-store-password: ${server.ssl.key-store-password}
key-store-password: ${client.ssl.key-store-password}
discovery:
enabled: true
scheme: https
Expand Down
Loading