# # DATABASE CONNECTION # # SQL Server connection string (comment out if using PostgreSQL) ConnectionStrings__DefaultConnection=Data Source=SERVER;Initial Catalog=DATABASE;User ID=USERNAME;Password=PASSWORD # PostgreSQL connection string (comment out if using SQL Server) ConnectionStrings__DefaultConnection=Host=SERVER;Database=DATABASE;Username=USERNAME;Password=PASSWORD ConnectionStrings__DefaultConnection_ProviderName=Postgres # # GENERAL CONFIGURATION # # The name of your Grant ID instance, e.g. "Patorum ID" Application__ProductName= # Public URL of the Auth Server component, e.g. "https://id.patorum.com" Application__AuthServerUrl= # Public URL of the Console component, e.g. "https://console.id.patorum.com" Application__ConsoleUrl= # 256-bit key used to encrypt sensitive data. Generate with: # docker run lacunasoftware/psc:1 -- gen-enc-key Application__TempTokenPassword= # PFX file containing a self-signed certificate to sign OAuth tokens. Generate with: # docker run lacunasoftware/psc:1 -- gen-cert "Your GrantID Name" SOME_PASSWORD Application__SigningCertificatePfxContent= Application__SigningCertificatePfxPassword= # Uncomment if you don't have an SSL certificate for the domains yet #Application__UseSsl=False # # LICENSES # # Your license for the PKI SDK, in Base64 format (required) PkiSuite__SdkLicense= # Your license for the Web PKI component in binary (Base64) format. Only required if certificate authentication will be enabled. PkiSuite__WebLicense= # # PRESETS # # The default configuration is to use a Docker volume mounted on `/var/app` as blob storage (for other options see https://docs.lacunasoftware.com/articles/grant-id/on-premises/blob-storage) BlobStorage__Type=FileSystem BlobStorage__Path=/var/app # Data protection keys are stored by default on a Docker volume mounted on `/var/keys` Application__ProtectorKeyStorePath=/var/keys # Leave this as `False` unless you have configured email sending -- https://docs.lacunasoftware.com/articles/grant-id/on-premises/configure-email Email__Enabled=False # Leave this as `False` unless you have configured SMS sending -- https://docs.lacunasoftware.com/articles/grant-id/on-premises/configure-sms SMS__Enabled=False # Leave these as `False` unless you have configured *both* email and SMS sending Application__RequireEmailVerification=False Application__RequirePhoneVerification=False