141 lines
3.1 KiB
YAML
141 lines
3.1 KiB
YAML
# file: log file name
|
|
# level: /trace/debug/info/warn/error/fatal, default: debug
|
|
# duration: rotation time with xx hours, example: 1/12/24 hours
|
|
# count: rotation count of log, default is 30 rotation
|
|
logger:
|
|
file: d:/local.git/ems.agt/restagent/log/restagent.log
|
|
level: trace
|
|
duration: 24
|
|
count: 2
|
|
|
|
# rest agent listen ipv4/v6 and port, support multiple routines
|
|
# ip: 0.0.0.0 or ::0, support IPv4/v6
|
|
rest:
|
|
- ipv4: 0.0.0.0
|
|
ipv6:
|
|
port: 3040
|
|
- ipv4: 0.0.0.0
|
|
ipv6:
|
|
port: 4443
|
|
scheme: https
|
|
caFile: ./etc/certs/rootca.crt
|
|
certFile: ./etc/certs/tsa-omc.crt
|
|
keyFile: ./etc/certs/tsa-omc_pri.key
|
|
|
|
webServer:
|
|
enabled: true
|
|
rootDir: d:/local.git/fe.ems
|
|
listen:
|
|
- addr: :8080
|
|
schema: http
|
|
- addr: :8443
|
|
scheme: https
|
|
caFile: ./etc/certs/rootca.crt
|
|
certFile: ./etc/certs/tsa-omc.crt
|
|
keyFile: ./etc/certs/tsa-omc_pri.key
|
|
|
|
database:
|
|
type: mysql
|
|
user: root
|
|
password: 1000omc@kp!
|
|
host: 127.0.0.1
|
|
port: 33066
|
|
name: omc_db
|
|
backup: d:/local.git/ems.agt/restagent/database
|
|
|
|
# Redis 缓存数据
|
|
redis:
|
|
port: 6379
|
|
host: "192.168.4.228"
|
|
password: ""
|
|
db: 0
|
|
|
|
mml:
|
|
port: 4100
|
|
sleep: 200
|
|
user: admin
|
|
password: admin
|
|
mmlHome: ./mmlhome
|
|
upload: /home/agtuser
|
|
|
|
ne:
|
|
user: root
|
|
etcdir: /usr/local/etc
|
|
bindir: /usr/local/bin
|
|
omcdir: /usr/local/omc
|
|
licensedir: /usr/local/etc/{neType}/license
|
|
|
|
# chk2ne: true/false, if put OmcNeConfig parameters to NE
|
|
omc:
|
|
uriPrefix: /api/rest
|
|
neType: OMC
|
|
neId: 001
|
|
rmUID: 4400HX101
|
|
neName: OMC
|
|
province: GD
|
|
vendor: ""
|
|
dn: 4600
|
|
chk2ne: false
|
|
sn: 13750650
|
|
checksign: false
|
|
backup: ./backup
|
|
upload: ./upload
|
|
frontUpload: d:/local.git/fe.ems/upload
|
|
frontTraceDir: d:/local.git/fe.ems/trace
|
|
software: ./software
|
|
license: ./license
|
|
gtpUri: gtp:192.168.2.119:2152
|
|
checkContentType: false
|
|
testMode: true
|
|
rbacMode: true
|
|
runDir:
|
|
|
|
# Alarm module setting
|
|
# Forward interface:
|
|
# email/sms
|
|
alarm:
|
|
forwardAlarm: true
|
|
email:
|
|
smtp: smtp@xxx.com.cn
|
|
port: 25
|
|
user: smtpuser
|
|
password: smtpuser@omc
|
|
sms:
|
|
apiURL: http://smsc.xxx.com.cn/
|
|
accessKeyID: xxxx
|
|
accessKeySecret: xxxx
|
|
signName: xxx SMSC
|
|
templateCode: 1000
|
|
|
|
#User authorized information
|
|
# crypt: mysql/md5/bcrypt
|
|
# token: true/false to check accessToken
|
|
# expires for session, unit: second
|
|
# Support single/multiple session of user
|
|
#
|
|
auth:
|
|
crypt: bcrypt
|
|
token: true
|
|
expires: 1800
|
|
session: multiple
|
|
publicKey: ./etc/certs/omc_pub.key
|
|
privateKey: ./etc/certs/omc_pri.key
|
|
|
|
# Parameter for limit number
|
|
# rmuid_maxnum: the max number of rmUID, default: 50
|
|
# alarmid_maxnum: the max number of AlarmID, default: 50
|
|
# pmid_maxnum: the max number of pmID, default: 50
|
|
# subid_maxnum: the max number of subscription ID, default: 20
|
|
# uri_maxlen: the max length of uri, default: 8192
|
|
# rmuid_regexp: regexp pattern of rmUID
|
|
params:
|
|
rmuidmaxnum: 50
|
|
alarmidmaxnum: 50
|
|
pmidmaxnum: 50
|
|
subidmaxnum: 20
|
|
urimaxlen: 2100000
|
|
rmuidregexp: "[0-9]{4}[A-Z]{2}[A-Z]{2}[0-9A-Z]{1}[0-9A-Z]{3}[0-9A-Z]{1,16}"
|
|
|
|
testConfig:
|
|
enabled: true
|
|
file: ./etc/testconfig.yaml |