...
Note: When running Unimus in Docker, add the above Java parameters to your docker-compose file and persist the volumes, so the keystore is not lost when the container is restarted:
| Code Block | ||
|---|---|---|
| ||
environment:
- 'JAVA_PARAMS=-Dserver.ssl.key-store=/opt/unimus/unimus.keystore.p12 -Dserver.ssl.keyStoreType=PKCS12 -Dserver.ssl.keyAlias=unimus -Dserver.ssl.key-store-password=[insert password here]'
volumes:
- './unimus:/opt/unimus' |
Restart the Unimus service (or container). After startup, Unimus will be available over HTTPS.
...