| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- zuul:
- ignoredServices: '*'
- #default is Cookie,Set-Cookie,Authorization.
- #removed Authorization from senstiive headers
- sensitiveHeaders: 'Cookie,Set-Cookie'
- routes:
- applicant:
- path: /applicant/**
- stripPrefix: false
- serviceId: crss-reg
- document:
- path: /documents/**
- stripPrefix: false
- serviceId: crss-reg
- approval:
- path: /approval/**
- stripPrefix: false
- serviceId: crss-reg
- organization:
- path: /organizations/**
- stripPrefix: false
- serviceId: crss-reg
- participant:
- path: /participants/**
- stripPrefix: false
- serviceId: crss-reg
- contact:
- path: /contacts/**
- stripPrefix: false
- serviceId: crss-reg
- mirf:
- path: /mirf/**
- stripPrefix: false
- serviceId: crss-reg
- admin:
- path: /admin/**
- stripPrefix: false
- serviceId: crss-admin
- oauthToken:
- path: /oauth/**
- stripPrefix: false
- serviceId: crss-admin
- oauthUser:
- path: /user
- stripPrefix: false
- serviceId: crss-admin
- meterInfo:
- path: /meter-info/**
- stripPrefix: false
- serviceId: crss-reg
- remarks:
- path: /remarks/**
- stripPrefix: false
- serviceId: crss-reg
- eureka:
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- hystrix:
- command:
- default:
- execution:
- isolation:
- thread:
- timeoutInMilliseconds: 300000
- ribbon:
- ConnectTimeout: 3000
- ReadTimeout: 60000
- maxAutoRetries: 1
- MaxAutoRetriesNextServer: 2
- # NOTE: since the server is undertow who serve the static pages, the uploads config must be set here also
- # if size was modified please update also the registration's application.yml
- spring:
- http:
- multipart:
- max-file-size: "25Mb"
- max-request-size: "25Mb"
|