blob: 5c5d64a4accf16d191d028e52d7a49f1e81f69d2 [file] [log] [blame]
RehanRazae838dbd2021-02-02 11:24:34 +01001################################################################################
2# Copyright (c) 2021 Nordix Foundation. #
3# #
4# Licensed under the Apache License, Version 2.0 (the "License"); #
5# you may not use this file except in compliance with the License. #
6# You may obtain a copy of the License at #
7# #
8# http://www.apache.org/licenses/LICENSE-2.0 #
9# #
10# Unless required by applicable law or agreed to in writing, software #
11# distributed under the License is distributed on an "AS IS" BASIS, #
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
13# See the License for the specific language governing permissions and #
14# limitations under the License. #
15################################################################################
16
17server:
18 port: 9090
19spring:
20 cloud:
21 gateway:
22 httpclient:
23 ssl:
24 useInsecureTrustManager: true
25 wiretap: true
26 httpserver:
27 wiretap: true
28 routes:
ecaiyanlinux192aa4e2021-06-06 00:13:42 +080029 - id: A1-Policy
RehanRazae838dbd2021-02-02 11:24:34 +010030 uri: https://policy-agent:8433
31 predicates:
ecaiyanlinux192aa4e2021-06-06 00:13:42 +080032 - Path=/a1-policy/**
33 - id: A1-EI
Lathishfe7a1e72021-02-03 13:34:37 +000034 uri: https://ecs:8434
35 predicates:
ecaiyanlinux192aa4e2021-06-06 00:13:42 +080036 - Path=/data-producer/**
RehanRazae838dbd2021-02-02 11:24:34 +010037management:
38 endpoint:
39 gateway:
40 enabled: true
41 endpoints:
42 web:
43 exposure:
44 include: "gateway,loggers,logfile,health,info,metrics,threaddump,heapdump"
45logging:
46 level:
47 ROOT: ERROR
48 org.springframework: ERROR
49 org.springframework.cloud.gateway: INFO
50 reactor.netty: INFO
51 file:
Lathishfe7a1e72021-02-03 13:34:37 +000052 name: /var/log/nonrtric-gateway/application.log