Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

To scramble a configuration parameter in a configuration files, add the keyword .encrypted to the configuration. The next time the application starts it scans the configuration file for unscrambled values in the file and scrambles the value, saves the updated file to disk.

Example 

The parameter *.pin = 1234 is considered sensitive and therefore should be scrambled. To scramble the parameter, add .encrypted to it:

Example: Encrypt parameter
*.pin.encrypted = 1234

The server will find the unscrambled value and scramble it:

Example: Resulting encrypted parameter
*.pin.encrypted = encrypted:MCa12==


The scrambling will create .seed files that must not be deleted, or the scrambled value can not be unscrambled.


  • No labels