An application.properties
file in the $THREEDS_HOME/3dss-cli-tool/conf
directory is used to set configuration options for the 3DS Server CLI Tool.
The available configuration options are listed below.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | # # ### Production database connection properties ### Datasource properties are needed only if database is used as a configuration. # # The datasource URL location. The JDBC connection string may differ depending on the database type, but we recommend # the specified formats defined below. Supported database types are PostgreSQL, MySQL, Oracle and Microsoft SQL Server. # # Recommended JDBC connection strings: # PostgreSQL: jdbc:postgresql://<host>:<port>/<database-name> # MySQL: jdbc:mysql://<host>:<port>/<database-name> # Oracle: jdbc:oracle:<oracle-driver>:<host>:<port>:<SID> # Microsoft SQL Server: jdbc:sqlserver://<host>:<port>;database=<database-name> #spring.datasource.url= # # The datasource user used by the application. This user needs to have write permission to database # and it is used to persist the changes in database if re-encryption command is used. # #spring.datasource.username= # # The password of the datasource user used by the application. # #spring.datasource.password= # # The server and admin application have default encryption key used to encrypt/decrypt sensitive information. # If you want to use your own secret key specify the key alias, keystore location, keystore type # and keystore password. # # Alias for active key which will be used for encrypting and re-encrypting commands. # Active key must be AES 256 secret key. # threedss.encryption.active-key-alias = # # Keystore location. # threedss.encryption.keystore-location = # # Keystore password. # threedss.encryption.keystore-password = # # Keystore type. Allowed keystore types: PKCS12 and JCEKS. # threedss.encryption.keystore-type = # |