You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
3.3 KiB
110 lines
3.3 KiB
{
|
|
"App": {
|
|
"CorsOrigins": "http://localhost:9527,http://localhost:30000,http://localhost:3100",
|
|
"Forwarded": {
|
|
"ForwardedHeaders": 5,
|
|
"KnownProxies": [
|
|
"localhost"
|
|
]
|
|
}
|
|
},
|
|
"BackgroundJobs": {
|
|
"Hangfire": {
|
|
"QueueName": "message",
|
|
"ServerName": "message service node"
|
|
}
|
|
},
|
|
"ConnectionStrings": {
|
|
"Default": "Server=localhost;Database=Messages;User Id=colin;Password=123456",
|
|
"MessageService": "Server=localhost;Database=Messages;User Id=colin;Password=123456",
|
|
"AbpIdentity": "Server=localhost;Database=Messages;User Id=colin;Password=123456",
|
|
"AbpTenantManagement": "Server=localhost;Database=Platform;User Id=colin;Password=123456",
|
|
"AbpSettingManagement": "Server=localhost;Database=Platform;User Id=colin;Password=123456",
|
|
"AbpPermissionManagement": "Server=localhost;Database=Platform;User Id=colin;Password=123456",
|
|
"AbpLocalizationManagement": "Server=localhost;Database=Platform;User Id=colin;Password=123456"
|
|
},
|
|
"Redis": {
|
|
"Configuration": "localhost,defaultDatabase=8",
|
|
"InstanceName": "LINGYUN.Abp.Application"
|
|
},
|
|
"AuthServer": {
|
|
"Authority": "http://localhost:44385/",
|
|
"ApiName": "lingyun-abp-application"
|
|
},
|
|
"Hangfire": {
|
|
"MySql": {
|
|
"Connection": "Server=localhost;Database=Messages;User Id=colin;Password=123456;Allow User Variables=true",
|
|
"TablePrefix": "AppHangfire"
|
|
},
|
|
"Dashboard": {
|
|
"WhiteList": "http://localhost:30000"
|
|
}
|
|
},
|
|
"Notifications": {
|
|
"WeChat": {
|
|
"WeApp": {
|
|
"DefaultWeAppState": "formal"
|
|
}
|
|
}
|
|
},
|
|
"CAP": {
|
|
"EventBus": {
|
|
"DefaultGroupName": "MessageService",
|
|
"Version": "v1",
|
|
"FailedRetryInterval": 300,
|
|
"FailedRetryCount": 10
|
|
},
|
|
"MySql": {
|
|
"TableNamePrefix": "msg",
|
|
"ConnectionString": "Server=localhost;Database=Messages;User Id=root;Password=123456"
|
|
},
|
|
"RabbitMQ": {
|
|
"HostName": "localhost",
|
|
"Port": 5672,
|
|
"UserName": "guest",
|
|
"Password": "guest",
|
|
"ExchangeName": "LINGYUN.Abp.Application",
|
|
"VirtualHost": "/"
|
|
}
|
|
},
|
|
"AuditLogging": {
|
|
"Elasticsearch": {
|
|
"IndexPrefix": "lingyun.abp.auditing"
|
|
}
|
|
},
|
|
"Elasticsearch": {
|
|
"NodeUris": "http://localhost:9200"
|
|
},
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Debug",
|
|
"Override": {
|
|
"Microsoft.EntityFrameworkCore": "Warning",
|
|
"DotNetCore.CAP": "Debug",
|
|
"Hangfire.Server": "Warning",
|
|
"System": "Warning",
|
|
"Microsoft": "Warning",
|
|
"Microsoft.AspNetCore.SignalR": "Debug",
|
|
"Microsoft.AspNetCore.Http.Connections": "Debug"
|
|
}
|
|
},
|
|
"WriteTo": [
|
|
{
|
|
"Name": "Console",
|
|
"Args": {
|
|
"restrictedToMinimumLevel": "Debug",
|
|
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss} [{Level:u3}] [{SourceContext}] [{ProcessId}] [{ThreadId}] - {Message:lj}{NewLine}{Exception}"
|
|
}
|
|
},
|
|
{
|
|
"Name": "Elasticsearch",
|
|
"Args": {
|
|
"nodeUris": "http://localhost:9200",
|
|
"indexFormat": "lingyun.abp.logging-{0:yyyy.MM.dd}",
|
|
"autoRegisterTemplate": true,
|
|
"autoRegisterTemplateVersion": "ESv7"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|