Update VIM after register finishied.
[aai/esr-server.git] / standalone / src / main / assembly / conf / extsys.yml
1 #
2 # Copyright 2016-2017 ZTE Corporation.
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
17 template: Hello, %s!
18
19 #defaultName: ${DW_DEFAULT_NAME:-Stranger}
20 # the micro service ip
21 serviceIp: 
22 msbDiscoveryIp: 127.0.0.1
23 msbDiscoveryPort: 10081
24 msbServerAddr: http://127.0.0.1:10081
25 cloudInfrastructureAddr: http://127.0.0.1/api/aai-cloudInfrastructure/v11
26 externalSystemAddr: http://127.0.0.1/api/aai-externalSystem/v11
27 multiCloudAddr: http://10.74.148.80/api/multicloud/v0
28 registByHand: true
29
30 # use the simple server factory if you only want to run on a single port
31 #server:
32 #  type: simple
33 #  connector:
34 #    type: http
35 #    port: 8080
36 server:
37   type: simple
38   rootPath: '/api/aai-esr-server/v1/*'
39   applicationContextPath: /
40   adminContextPath: /admin
41   connector:
42     type: http
43     port: 9518
44
45 # Logging settings.
46 logging:
47
48   # The default level of all loggers. Can be OFF, ERROR, WARN, INFO, DEBUG, TRACE, or ALL.
49   level: ALL
50
51   # Logger-specific levels.
52   loggers:
53
54     # Sets the level for 'com.example.app' to DEBUG.
55     org.onap.aai.esr.ExtsysApp: INFO
56
57   appenders:
58     - type: console
59       threshold: INFO
60       timeZone: UTC
61       logFormat: "%d{yyyy-MM-dd HH:mm:ss SSS} %-5p [%c][%t] - %m%n"
62     - type: file
63       threshold: INFO
64       logFormat: "%d{yyyy-MM-dd HH:mm:ss SSS} %-5p [%c][%t] - %m%n"
65       currentLogFilename: ./works/logs/extsys.log
66       archivedLogFilenamePattern: ./works/logs/zip/extsys-%d{yyyy-MM-dd}.log.gz
67       archivedFileCount: 7
68       timeZone: UTC
69