blob: fb8c1064d0f47dadbfaf1d2a1e3e82a73d1e4e87 [file] [log] [blame]
Lathishbccdfae2021-01-07 16:14:03 +00001################################################################################
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:
Lathish85132f52021-02-09 10:41:21 +000029 - id: A1-Policy
Lathishbccdfae2021-01-07 16:14:03 +000030 uri: https://localhost:8433
31 predicates:
Lathish85132f52021-02-09 10:41:21 +000032 - Path=/a1-policy/**
33 - id: A1-EI
ychaconaf912b92021-04-27 14:43:56 +020034 uri: https://localhost:8434
Lathishbccdfae2021-01-07 16:14:03 +000035 predicates:
elinuxhenrikf8e20772021-06-22 11:01:56 +020036 - Path=/data-producer/**,/data-consumer/**
Lathishbccdfae2021-01-07 16:14:03 +000037management:
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:
elinuxhenrikf8e20772021-06-22 11:01:56 +020052 name: /var/log/nonrtric-gateway/application.log