22 lines
465 B
JSON
22 lines
465 B
JSON
{
|
|
"ConnectionStrings": {
|
|
"ConnectionString": "server=127.0.0.1;port=3306;database=youda;user=youda;password=youda;charset=utf8mb4",
|
|
"RedisConnectionString": "127.0.0.1:6379,defaultDatabase=3"
|
|
},
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
//服务器配置
|
|
"Kestrel": {
|
|
"Endpoints": {
|
|
"Http": {
|
|
"Url": "http://*:80"
|
|
}
|
|
}
|
|
}
|
|
}
|