12345678910111213141516171819202122 |
- {
- "Logging": {
- "LogLevel": {
- "Default": "Debug"
- }
- },
- "ConnectionStrings": {
- "DataContext": "Server=mes.saierdt.com;Database=LSProduct;User ID=vxRead;Password=123123;MultipleActiveResultSets=true;"
- },
- "AllowedHosts": "*",
- "JwtSettings": {
- "Audience": "ordersystem",
- "Issuer": "ordersystem",
- "Secret": "D2EB4BDC-8085-4C87-9EB7-22C3DD9307FC", //秘钥可以构建服务器认可的token;签名秘钥长度最少16
- "AccessTokenExpiresHour": 24 //过期时间 小时
- },
- "Web": {
- "Cros": {
- "Domain": "http://localhost:8100, http://localhost:8101"
- }
- }
- }
|