| Variable | Description |
|---|---|
| SSL_KEY_STORE | Path of the key store containing SSL certificate. In our example, we want Spring Boot to search for this in classpath. |
| SSL_KEY_STORE_PASSWORD | Password used to access the key store. |
| SSL_KEY_STORE_TYPE | Type of the key store (Usage: PKCS12). |
| SSL_KEY_ALIAS | Alias identifying the key in the key store. |
| SSL_ENABLED | Enables Spring Boot application to use HTTPS protocol. |
| SERVER_PORT | Port the server listens on. 8443 should be used. |

