30 lines
1.1 KiB
INI
30 lines
1.1 KiB
INI
spring.application.name=gateway
|
|
server.port=8080
|
|
|
|
eureka.client.region = default
|
|
eureka.client.registryFetchIntervalSeconds = 5
|
|
|
|
management.security.sessions=always
|
|
|
|
zuul.routes.book-service.path=/book-service/**
|
|
zuul.routes.book-service.sensitive-headers=Set-Cookie,Authorization
|
|
hystrix.command.book-service.execution.isolation.thread.timeoutInMilliseconds=600000
|
|
|
|
zuul.routes.rating-service.path=/rating-service/**
|
|
zuul.routes.rating-service.sensitive-headers=Set-Cookie,Authorization
|
|
hystrix.command.rating-service.execution.isolation.thread.timeoutInMilliseconds=600000
|
|
|
|
zuul.routes.discovery.path=/discovery/**
|
|
zuul.routes.discovery.sensitive-headers=Set-Cookie,Authorization
|
|
zuul.routes.discovery.url=http://localhost:8082
|
|
hystrix.command.discovery.execution.isolation.thread.timeoutInMilliseconds=600000
|
|
|
|
logging.level.org.springframework.web.=debug
|
|
logging.level.org.springframework.security=debug
|
|
logging.level.org.springframework.cloud.netflix.zuul=debug
|
|
|
|
spring.redis.host=localhost
|
|
spring.redis.port=6379
|
|
|
|
spring.sleuth.sampler.percentage=1.0
|
|
spring.sleuth.web.skipPattern=(^cleanup.*|.+favicon.*) |