123456789101112131415161718192021222324252627 |
- {
- "isIIS": true,
- "virtualPath": "/wycore",
- "kunshanUrl": "https://www.s-p-c.com.cn/scc2/user/?route=communityActivity/sendWXMsg", //昆山提供的短信接口地址
- "Logging": {
- "IncludeScopes": false,
- "Debug": {
- "LogLevel": {
- "Default": "Warning",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- }
- },
- "AllowedHosts": "*",
- "AppSettings": {
- "ConnectionString": "server=(local);uid=sa;pwd=sa;database=PM;",
- "NlogConfigFile": "nlog.config"
- },
- "JWTConfig": {
- "IssuerSigningKey": "needalongbase64encodedkey", //秘钥可以构建服务器认可的token;签名秘钥长度大于16
- "Issuer": "lutao", //Token颁发者
- "AccessTokenExpiresMinutes": "600", //过期时间,分钟
- "Audience": "propertyMs" //Token接受者
- }
- }
|