MibMiddlewareConfig
Introduction
It abstracts the configurations contained in MibCoreConfig to be applied to the solutions. The specific configurations of each service/application inherit from it and make all the configurations contained in MibCoreConfig available to them.
How to use?
Applications/services provided by the MIB:
- MibConcurrencyConfig
- MibEditHistoryMicroServiceConfig
- MibPermissionMicroServiceConfig
- MibAuthorizationServerConfig
- MibServerBaseConfig
(MibServerApi)
- MibCmsFrontEndServerBaseConfig
(MibServer3)
- MibAgentWebHostConfig
(Agents)
- MibFileManagementMicroServiceServerConfig
- MibContentCriteriaMicroServiceServerConfig
MIBCONCURRENCYCONFIG_DEFAULT_ENABLESWAGGER: true
MIBCONCURRENCYCONFIG_DEFAULT_ENABLESERILOG: false
MIBEDITHISTORYMICROSERVICESERVERCONFIG_DEFAULT_ENABLESERILOG: true
MIBEDITHISTORYMICROSERVICESERVERCONFIG_DEFAULT_ENABLEMETRICS: false
MIBPERMISSIONMICROSERVICESERVERCONFIG_DEFAULT_ENABLESWAGGER: true
MIBPERMISSIONMICROSERVICESERVERCONFIG_DEFAULT_ENABLEMIBLOGPROVIDER: false
MIBAUTHORIZATIONSERVERCONFIG_DEFAULT_SERILOGAPPLICATIONNAME: MibAuthorization
MIBAUTHORIZATIONSERVERCONFIG_DEFAULT_ENABLESERILOG: false
MIBSERVERBASECONFIG_DEFAULT_ENABLESERILOG: true
MIBSERVERBASECONFIG_DEFAULT_SERILOGAPPLICATIONNAME: MibServerApi
MIBCMSFRONTENDSERVERBASECONFIG_DEFAULT_ENABLEMETRICS: true
MIBCMSFRONTENDSERVERBASECONFIG_DEFAULT_ENABLESWAGGER: true
MIBAGENTWEBHOSTCONFIG_DEFAULT_ENABLEMETRICS: true
MIBAGENTWEBHOSTCONFIG_DEFAULT_ENABLESWAGGER: false
Tip
There is a hierarchical relationship between MibCoreConfig and MibMiddlewareConfig, where the configurations made in the classes that inherit from MibMiddlewareConfig take priority over what has been defined in MibCoreConfig. In this way it is possible to have a global configuration with MibCoreConfig and have specifications for each project that override these global configurations.
Use cases
I want all MIB services/applications to apply default settings.
Example configurations:
- EnableSerilog
- Timeout
- Swagger
Just upload the settings below to the environment:
MIBCORECONFIG_DEFAULT_ENABLESERILOG: true
MIBCORECONFIG_DEFAULT_ENABLESWAGGER: true
MIBCORECONFIG_DEFAULT_TIMEOUT: 60
This way you don't have to repeat the same configuration for each specific service.
I want like to apply common settings to all the services, but I want the MibApi to have different specifications from the others.
Example configurations:
- EnableSerilog
- Timeout
- Swagger
- UseProxy
Just upload the settings below to the environment:
MIBCORECONFIG_DEFAULT_ENABLESERILOG: true
MIBCORECONFIG_DEFAULT_ENABLESWAGGER: true
MIBCORECONFIG_DEFAULT_TIMEOUT: 60
MIBCORECONFIG_DEFAULT_USEPROXY: true
MIBSERVERBASECONFIG_DEFAULT_USEPROXY: false
The UseProxy=true
setting will be applied to all services, but as there is a specific setting for MibApi, it will use the setting UseProxy=false
, as the service's local setting takes priority over the global one.