Set up keystore

This commit is contained in:
2024-12-14 02:19:58 +01:00
parent f230ab80d2
commit fe1b88cc97
5 changed files with 59 additions and 3 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 ###