mz.httpd.security Set the value of this property to property to true (default value is false) to enable encryption.
Code Block
language
text
theme
Eclipse
$ mzsh topo set 'topo://container:<container>/val:common."mz.httpd.security"' true
mz.httpd.security.keystore Use this property to set the keystore path, which must be absolute.
Code Block
language
text
theme
Eclipse
$ mzsh topo set 'topo://container:<container>/val:common."mz.httpd.security.keystore"' <keystore path>
mz.httpd.security.keystore.password Use this property to set the password for the keystore, as selected in keytool.
Code Block
language
text
theme
Eclipse
$ mzsh topo set 'topo://container:<container>/val:common."mz.httpd.security.keystore.password"' \
`mzsh encryptpassword <password>`
mz.httpd.security.key.password Use this property to set to the password for the key, as chosen in in keytool. By default, this is the same as the keystore password. (This is the default for for keytool).
Code Block
language
text
theme
Eclipse
$ mzsh topo set topo://container:<container>/val:common.mz.httpd.security.key.password \
`mzsh encryptpassword <password>`
...
Note
title
Note!
After having configured the properties, this section:
Code Block
# Http url to platform, e.g http://localhost:9000
if [ -z "${MZ_PLATFORM+x}" ]; then
MZ_PLATFORM="http://localhost:9000"
export MZ_PLATFORM
in In the $MZ_HOME/bin/mzsh file needs to be updated to state https instead of http for both the Platform and the ECs.