16 lines
397 B
Bash
16 lines
397 B
Bash
# Paths
|
|
export BASE_DIR="/usr/local/etc/omc"
|
|
export DATA_DIR="/usr/local/omc"
|
|
|
|
# OMC settings
|
|
export M_PARAM="${M_PARAM:-std}"
|
|
export C_PARAM="${C_PARAM:-omc}"
|
|
|
|
# OMC Config settings
|
|
export API_HTTP_PORT="${API_HTTP_PORT:-33030}"
|
|
export API_HTTPS_PORT="${API_HTTPS_PORT:-33443}"
|
|
export WEB_HTTP_PORT="${WEB_HTTP_PORT:-80}"
|
|
export WEB_HTTPS_PORT="${WEB_HTTPS_PORT:-443}"
|
|
|
|
export CMD_EXTRA_FLAGS=""
|