23 lines
792 B
INI
23 lines
792 B
INI
spring.application.name=gateway
|
|
server.port=8080
|
|
|
|
eureka.client.region = default
|
|
eureka.client.registryFetchIntervalSeconds = 5
|
|
|
|
management.security.sessions=always
|
|
|
|
zuul.routes.resource.path=/resource/**
|
|
zuul.routes.resource.sensitive-headers=Set-Cookie,Authorization
|
|
hystrix.command.resource.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 |