Search Results for

    Show / Hide Table of Contents

    Concrii® configuration general overview

    General

    Appsettings.json file is used to configure various Concrii settings. Using the GUI, all of them are easily accessible through the "Configuration" tab in the main navigation bar. This file contains system, authorization, client and server settings. Refer to System settings Fruther, this file contains application settings like schedules, friends, databases, tables, columns, indexes and encryption. Refer to Application settings

    Encrypting sensitive values in configuration files

    All the string values (surrounded by ") described within the configuration files can be ciphered. To cipher a value, tag the value by writing {makecipher} at the beginning of the value. E.g.:

    {makecipher}databaseconnectionstring
    

    When the application starts, this tag and the value will be replaced by the tag {cipher} and the encrypted value. E.g.:

    {cipher}ciphereddatabaseconnectionstring
    
    Warning

    It is highly recommended that you do this with all values that should not be saved in clear text within the configuration files.

    Warning

    Double Quotes (") within the value are not supported by now.

    Note

    Following properties are automatically encrypted when configuration is saved: password, connectionstring, clientsecret, sharedsecret, instrumentationkey, eventcollectortoken. For adapting these properties, refer to Configuration Secret Properties

    In This Article
    Back to top Generated by DocFX