| 1234567891011121314151617181920212223242526272829303132333435 |
- {
- "URL": "http://*:5001", //运行端口,IIS部署设置空
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- },
- //模拟登录
- "Login": {
- "Url": "http://127.0.0.1:5002/connect/token", //编码
- "ClientId": "YztServer", //编码
- "ClientSecrets": "84f6a2dd59b861b73deb509e1d752db2" //密钥
- },
- "Urls": "http://*:5001",
- "AllowedHosts": "*",
- "IdentityServerConfig": {
- "Url": "http://localhost:5002", //只能配置成localhost ?
- "UseHttps": false,
- "IdentityScheme": "Bearer",
- "ApiSecrets": [
- {
- "Key": "YZT",
- "Name": "yztservice"
- }
- ]
- },
- //白名单接口,主要用于文件下载
- "AllowAnonymous": [
- "/api/ghss/Ghtz/Download"
- ]
- }
|