This page was last edited on February 15, 2024, at 19:04.
Comments or questions about this documentation? Contact us for support!
For added security, consider encrypting your passwords in the application.yaml file. This feature is only supported for JAR (Spring Boot) distributables.
The following table identifies which passwords can be encrypted and where you can find them in the application.yaml file:
File section | Settings |
---|---|
jetty > ssl |
|
serverSettings |
|
serverSettings > samlSettings |
|
serverSettings > accountManagement > smtpServer |
|
Start
$ java -jar gws.jar --encrypt ops
CRYPT:an03xPrxLAu9p==
The GWS application only encrypts and prints the password. The server won't actually start.
opsUserName: ops
opsUserPassword: CRYPT:an03xPrxLAu9p==
The server only decrypts passwords that start with the CRYPT: prefix. Passwords without the CRYPT: prefix are considered plain text and remain unmodified.
End