12345678910111213141516171819202122232425262728293031 |
- {
- "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"
- }
- },
- "WxConfig": {
- "AppId": "wx737c2a7879b897c1",
- "AppSecret": "0d37c99bf2edd9ef3d839869bfa724ad",
- "RedirectURI": "http://www.bowintek.com/order/h5"
- },
- "AppSettings": {
- "H5BasePath": "/", //h5页面路径,默认/ ,配置为子路径时如:/order/
- "H5Version": "v1" //h5版本号,解决缓存问题,需改配置:1、对应静态文件路径:wwwwroot/h5/版本号; 2:需同步修改index页面base href的值 如:/h5/v1/ 若有配置H5BasePath,则为/order/h5/v1/
- }
- }
|