| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- 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
- facilities:
- path: /facilities/**
- 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
- 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"
|