1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- logging:
- level:
- com:
- netflix: DEBUG
- # service routes
- zuul:
- routes:
- packages:
- path: /api/v1.0/packages
- serviceId: svr-pack-mgr
- package_json:
- path: /api/v1.0/json_package
- serviceId: svr-pack-mgr
- esb_log:
- path: /api/v1.0/esb/uploadLog
- serviceId: svr-esb
- sanofi_support:
- path: /api/v1.0/sanofi/physic_signs
- serviceId: svr-health-profile
- health_profile:
- path: /api/v1.0/health_profiles
- serviceId: svr-health-profile
- ---
- spring:
- profiles: dev
- thymeleaf:
- cache: false
- server:
- ssl:
- key-store: C:/Windows/tomcat.keystore
- key-store-password: 123456
- key-password: 123456
- ---
- spring:
- profiles: test
- thymeleaf:
- cache: false
- server:
- ssl:
- key-store-password: 123456
- key-password: 123456
- ---
- spring:
- profiles: prod
- server:
- ssl:
- key-store-password: 123456
- key-password: 123456
|