1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
| #默认配置文件目录 CONFIG_DIR : {type : 'path', default : 'config'}, #MongoDB完整地址,默认端口为27017 MONGODB_CONNECTION_URL : {type : 'string', default : 'mongodb://127.0.0.1/genieacs'}, #redis参数 REDIS_PORT : {type : 'int', default : 6379}, REDIS_HOST : {type : 'string', default : ''}, REDIS_DB : {type : 'int', default : 0}, #cwmp服务参数 CWMP_WORKER_PROCESSES : {type : 'int', default : 0}, CWMP_PORT : {type : 'int', default : 7547}, CWMP_INTERFACE : {type : 'string', default : '0.0.0.0'}, CWMP_SSL : {type : 'bool', default : false}, CWMP_LOG_FILE : {type: 'path', default : ''}, CWMP_ACCESS_LOG_FILE : {type : 'path', default : ''}, #NBI(API)服务参数 NBI_WORKER_PROCESSES : {type : 'int', default : 0}, NBI_PORT : {type : 'int', default : 7557}, NBI_INTERFACE : {type : 'string', default : '0.0.0.0'}, NBI_SSL : {type : 'bool', default : false}, NBI_LOG_FILE : {type: 'path', default : ''}, NBI_ACCESS_LOG_FILE : {type : 'path', default : ''}, #FS(静态文件服务)服务参数 FS_WORKER_PROCESSES : {type : 'int', default : 0}, FS_PORT : {type : 'int', default : 7567}, FS_INTERFACE : {type : 'string', default : '0.0.0.0'}, FS_SSL : {type : 'bool', default : false}, FS_HOSTNAME : {type : 'string', default : 'acs.example.com'}, FS_LOG_FILE : {type: 'path', default : ''}, FS_ACCESS_LOG_FILE : {type : 'path', default : ''},
UDP_CONNECTION_REQUEST_PORT : {type : 'int', default : 0},
DOWNLOAD_TIMEOUT: {type : 'int', default : 3600}, EXT_TIMEOUT: {type: 'int', default: 3000}, MAX_CACHE_TTL : {type : 'int', default : 86400}, DEBUG : {type : 'bool', default : false}, RETRY_DELAY : {type : 'int', default : 300}, SESSION_TIMEOUT : {type : 'int', default : 30}, CONNECTION_REQUEST_TIMEOUT : {type : 'int', default: 2000}, GPN_NEXT_LEVEL : {type : 'int', default : 0}, GPV_BATCH_SIZE : {type : 'int', default : 32}, MAX_DEPTH : {type: 'int', default : 16}, COOKIES_PATH : {type : 'string'}, LOG_FORMAT : {type : 'string', default : 'simple'}, ACCESS_LOG_FORMAT : {type : 'string', default : ''}, MAX_CONCURRENT_REQUESTS : {type : 'int', default: 20}, DATETIME_MILLISECONDS : {type: 'bool', default: true}, BOOLEAN_LITERAL : {type: 'bool', default: true}, CONNECTION_REQUEST_ALLOW_BASIC_AUTH: {type: 'bool', default: false}, MAX_COMMIT_ITERATIONS : {type : 'int', default: 32},
# XML configuration XML_RECOVER : {type : 'bool', default : false}, XML_IGNORE_ENC : {type : 'bool', default : false}, XML_FORMAT : {type : 'bool', default : false}, XML_NO_DECL : {type : 'bool', default : false}, XML_NO_EMPTY : {type : 'bool', default : false}, XML_IGNORE_NAMESPACE : {type : 'bool', default : false},
# Should probably never be changed DEVICE_ONLINE_THRESHOLD : {type : 'int', default : 4000}
|