0e83f0b891
Modify the configuration so that recordings are stored on /var/lib/freeswitch/recordings by default (this is a tmpfs so should be change if persistance is needed). Allow the scripts and htdocs to have their directories set individually instead of requirings them to be under /usr/share/freeswitch. git-svn-id: svn://svn.openwrt.org/openwrt/packages@22782 3c298f89-4303-0410-b956-a3cf2f4a3e73
12 lines
584 B
Plaintext
12 lines
584 B
Plaintext
#FS_DIR="/opt"
|
|
FS_DIR_ETC="$FS_DIR/etc/freeswitch"
|
|
FS_DIR_MOD="$FS_DIR/usr/lib/freeswitch"
|
|
FS_DIR_DB="$FS_DIR/tmp/freeswitch/db"
|
|
FS_DIR_LOG="$FS_DIR/tmp/freeswitch/log"
|
|
FS_DIR_SCRIPTS="$FS_DIR/usr/share/freeswitch/scripts"
|
|
FS_DIR_HTDOCS="$FS_DIR/usr/share/freeswitch/htdocs"
|
|
FS_DIR_RECORDINGS="/var/lib/freeswitch/recordings" # NOTE: must be changed in config as well
|
|
FS_DIR_VM_STORAGE="/var/lib/freeswitch/storage" # NOTE: must be changed in config as well
|
|
|
|
OPTIONS="-conf $FS_DIR_ETC -log $FS_DIR_LOG -db $FS_DIR_DB -mod $FS_DIR_MOD -htdocs $FS_DIR_HTDOCS -scripts $FS_DIR_SCRIPTS"
|