Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 1.16 KB

CONFIGURATION.md

File metadata and controls

48 lines (37 loc) · 1.16 KB

IRS

Purpose | Configuration | Running


Configuration

Custom configuration for this application may be specified via an environment variable APP_CONFIG to a configuration file that will be merged with the default configuration file.

  • Default Configuration
  • Config Source Code
  • Full Configuration
    IRS:
    
      # Service configurations
      Servers:
    
        # Public service configuration
        Public:
          Bind:
            # Address and port to listen on.
            Address: ":8200"
    
        # Health/Admin service configuration.
        Admin:
          Bind:
            # Address and port to listen on.
            Address: ":8201"
    
      # All database configuration is done here. Only one connector can be configured.
      Database:
    
        # Database name to use for selected connector.
        DatabaseName: "identity"
    
        # MySql configuration
        MySQL:
          Address: tcp(mysqlidentity:3306)
          User: identity
          Password: identity
    
        # OR uses the sqllite db
        SQLLite:
          Path: ":memory:"

Next - Running