From e37d3b3f87f1eaf3ba1a0a192fb7251abd56ad6e Mon Sep 17 00:00:00 2001 From: malik masis Date: Mon, 26 Sep 2022 17:32:40 +0300 Subject: [PATCH] Create appsettings.Docker.json --- .../appsettings.Docker.json | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 services/cmskit/src/EShopOnAbp.CmskitService.HttpApi.Host/appsettings.Docker.json diff --git a/services/cmskit/src/EShopOnAbp.CmskitService.HttpApi.Host/appsettings.Docker.json b/services/cmskit/src/EShopOnAbp.CmskitService.HttpApi.Host/appsettings.Docker.json new file mode 100644 index 00000000..0439b4cf --- /dev/null +++ b/services/cmskit/src/EShopOnAbp.CmskitService.HttpApi.Host/appsettings.Docker.json @@ -0,0 +1,44 @@ +{ + "App": { + "SelfUrl": "https://cmskit-service", + "CorsOrigins": "https://gateway-web,gateway-web-public" + }, + "AuthServer": { + "Authority": "http://app-authserver", + "RequireHttpsMetadata": "false", + "SwaggerClientId": "WebGateway_Swagger", + "SwaggerClientSecret": "1q2w3e*" + }, + "ConnectionStrings": { + "CmskitService": "User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Cmskit;Pooling=false", + "AdministrationService": "User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false;" + }, + "Redis": { + "Configuration": "redis" + }, + "RabbitMQ": { + "Connections": { + "Default": { + "HostName": "rabbitmq" + } + }, + "EventBus": { + "ClientName": "EShopOnAbp_CmskitService", + "ExchangeName": "EShopOnAbp" + } + }, + "RemoteServices": { + "AbpIdentity": { + "BaseUrl": "http://identity-service" + } + }, + "IdentityClients": { + "Default": { + "GrantType": "client_credentials", + "ClientId": "EShopOnAbp_CmskitService", + "ClientSecret": "1q2w3e*", + "Authority": "http://app-authserver", + "Scope": "IdentityService" + } + } +} \ No newline at end of file