24 lines
652 B
CMake
24 lines
652 B
CMake
#ifndef NWWEBUI_CONFIG_H
|
|
#define NWWEBUI_CONFIG_H
|
|
|
|
#define DEFAULT_SMART_CONF "@MARS_NWE_INSTALL_FULL_CONFDIR@/smart.conf"
|
|
#define DEFAULT_SMART_PERL "@MARS_NWE_INSTALL_FULL_LIBEXEC@/smart"
|
|
|
|
#define LOG_PATH_DEFAULT "@MARS_NWE_LOG_DIR@/nwwebui.log"
|
|
|
|
#define LOG_LEVEL_ERROR 0
|
|
#define LOG_LEVEL_INFO 1
|
|
#define LOG_LEVEL_DEBUG 2
|
|
#define LOG_LEVEL_DEFAULT LOG_LEVEL_INFO
|
|
|
|
#define DEFAULT_BIND_IP "0.0.0.0"
|
|
#define DEFAULT_TLS_PORT 9443
|
|
|
|
#define DEFAULT_CERT_FILE "@MARS_NWE_INSTALL_FULL_CONFDIR@/server.crt"
|
|
#define DEFAULT_KEY_FILE "@MARS_NWE_INSTALL_FULL_CONFDIR@/server.key"
|
|
|
|
#define NW_BACKLOG 64
|
|
#define NW_BUF_SZ 16384
|
|
|
|
#endif
|