diff --git a/support-portal-backend/src/main/resources/application.yml b/support-portal-backend/src/main/resources/application.yml index f83d68a..ed9929f 100644 --- a/support-portal-backend/src/main/resources/application.yml +++ b/support-portal-backend/src/main/resources/application.yml @@ -113,4 +113,19 @@ server: port: 5000 logging: level: - net.shyshkin: debug \ No newline at end of file + net.shyshkin: debug + +##### +# +# HTTPS configuration +# +##### + +server.ssl: + enabled: true # Enable HTTPS support (only accept HTTPS requests) + key-alias: securedPortal # Alias that identifies the key in the key store + key-store: classpath:securedPortal-keystore.p12 # Keystore location + key-store-password: secret # Keystore password + key-store-type: PKCS12 # Keystore format + +