Set up keystore

This commit is contained in:
2024-11-13 17:04:38 +01:00
parent 42692ce94e
commit 8342512703
6 changed files with 73 additions and 5 deletions

View File

@@ -19,6 +19,14 @@ spring:
activate:
on-profile: development
server:
port: 8443
ssl:
enabled: true
key-store: classpath:cert/keystore.p12
key-store-type: PKCS12
key-store-password: password
---
##########################
### Docker environment ###
@@ -28,6 +36,14 @@ spring:
activate:
on-profile: docker
server:
port: 8443
ssl:
enabled: true
key-store: classpath:cert/keystore.p12
key-store-type: PKCS12
key-store-password: password
---
##############################
### Production environment ###