Infrastructure/OpenAuth.WebApi/appsettings.Production.json

26 lines
726 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{
"Logging": {
"LogLevel": {
"Default": "Debug"
}
},
"AllowedHosts": "*",
"DataProtection": "temp-keys/",
"ConnectionStrings": {
"OpenAuthDBContext": "PORT=5432;Database=openauthbasedb;HOST=localhost;PASSWORD=123456;USER ID=postgres;"
},
"AppSetting": {
"DbTypes": {
"OpenAuthDBContext": "PostgreSQL" //数据库类型SqlServer、MySql、Oracle、PostgreSQL
},
"UploadPath": "", //附件上传的路径,如果为空则保存在站点根目录
"RedisConf": {
"Conn": "175.27.168.120:6050,password=HopetryRedis1406",
"Database": 1
}, //redis配置
"HttpHost": "http://*:10010 ", //启动绑定地址及端口
"SYSTEM_USERPWD": "123456"
}
}