techhero-gateway-dev.yml 3.44 KB
Newer Older
Administrator committed
1 2 3 4
zuul:
  ribbon:
    eager-load:
      enabled: true
5
      clients: techhero-auth,techhero-base-supportplatform,techhero-base-exam,techhero-base-system,techhero-project-emergencycommand,techhero-project-theme,techhero-permission,techhero-base-basicdata,techhero-preventioncheat,techhero-component-message,techhero-component-websocket,techhero-project-track
Administrator committed
6 7 8 9
  ignoredServices: '*'
  host:
    connect-timeout-millis: 10000
    socket-timeout-millis: 10000
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
  #servlet-path: /
hystrix:
  command:
    default:
      execution:
        isolation:
          thread:
            timeoutInMilliseconds: 60000  #设置API网关中路由转发请求的HystrixCommand执行超时时间
ribbon:
  ReadTimeout: 300000
  ConnectTimeout: 300000
  MaxAutoRetries: 1
  MaxAutoRetriesNextServer: 1
 
  host:
    connect-timeout-millis: 20000
    socket-timeout-millis: 20000
Administrator committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40

security:
  encode:
    key: '1234567887654321' #必须16位
  validate:
    code: true
    preview: false
  sessions: stateless
  oauth2:
    client:
      client-id: techhero
      client-secret: techhero
    resource:
      jwt:
41
         key-uri: http://192.168.0.162:10006/oauth/token_key #解析jwt令牌所需要密钥的地址
Administrator committed
42
    authorization:
43
      check-token-access: http://TECHHERO-AUTH/oauth/check_token
44
 
45

46 47 48
gateway:
  allowed:
    origins:
49
      - '*'
50
 
51
 
Administrator committed
52 53
ignore:
  urls:
54
    - /system/login/updatePwdForClient
Administrator committed
55 56 57 58 59 60 61
    - /auth/**
    - /swagger/api-docs
    - /swagger-resources/**
    - /swagger-ui.html
    - /*/v2/api-docs
    - /webjars/**
    - /emerycommand/open/**
62
    - /emerycommand/open/zh/msg/**
Administrator committed
63 64 65
    - /socket/**
    - /visualization/open/**
    - /visualization/open/switchUrl/overview**
66
    - /zuul/emerycommand/demo/**
Administrator committed
67
    - /emerycommand/demo/**
68
    - /exam/open/** #基础数据开放接口规则以open开头
Administrator committed
69 70 71 72 73 74 75 76 77 78 79
    - /basicdata/zh/rest/**/exportExecl  #导出表数据
    - /basicdata/dc/rest/**/exportExecl
    - /basicdata/dc/rest/**/downloadTemplate  #下载表格模板
    - /basicdata/zh/rest/**/downloadTemplate
    - /basicdata/dc/rest/**/uploadExcel  #Excel导入数据
    - /basicdata/zh/rest/**/uploadExcel
    - /preventioncheat/zbfk/ksjh/record/export #作弊防控导出相关
    - /preventioncheat/zbfk/ksjh/eaxmPlan/export
    - /preventioncheat/zbfk/sbgl/device/export
    - /preventioncheat/zbfk/xyxh/cheat/export
    - /platform/vc/**  #验证码
80
    - /system/vc/** #验证码
Administrator committed
81 82
    - /message/**  #msg测试使用
    - /emerycommand/wjdc/rest/djrxx/getDjrxxData/*
83
    - /basicdata/dc/rest/dcKsjhb/queryAll  #考试计划列表
84
    - /exam/dc/rest/dcKsjhb/queryAll  #考试计划列表
85
    - /exam/dc/rest/dcKsjhb/getExamPlan  #登录页考试计划, 按时间排序
86
    - /emerycommand/wjdc/rest/wjmb/uploadFile
87 88 89
    - /system/parent/register # 家长注册
    - /system/parent/login # 家长登录
    - /system/parent/setNewPwdByUserName # 家长忘记密码
90 91 92 93
    
    - /exam/zh/rest/**/exportExcel  #导出表数据
    - /exam/dc/rest/**/exportExcel
    - /exam/dc/rest/**/downloadTemplate  #下载表格模板
94
    - /exam/zh/rest/**/downloadTemplate/
95 96 97 98 99
    - /exam/dc/rest/**/uploadExcel  #Excel导入数据
    - /exam/zh/rest/**/uploadExcel
    - /exam/currentExamClass/importBindingExcel  #导入考场编排
    - /exam/currentExamClass/downloadTemplate  #下载考场编排模板
    - /exam/currentExamClass/exportExcel  #导出考场编排excel
100
    - /exam/zh/rest/zhSssbxxb/downloadTemplate/**
101
    - /system/login/checkAccount/**  #校验用户名
102
    - /exam/wechat/**    #微信小程序调用接口
Administrator committed
103