mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 03:32:12 +00:00
47 lines
2 KiB
YAML
47 lines
2 KiB
YAML
# A full-featured PBX (for rural telephony, etc) based on Asterisk and FreePBX.
|
|
#
|
|
# 2022-05-25: PHP 7.4 REQUIRED -- PLEASE READ:
|
|
# https://github.com/iiab/iiab/tree/master/roles/pbx#readme
|
|
# 2021-08-03: Attempts FreePBX 16 Beta -- as required w/ PHP 7.4 OS's for #2897
|
|
# 2019: Worked on Ubuntu 18.04, Debian 9 w/ Node.js 10.x, and seemingly RPi 3+.
|
|
|
|
# pbx_install: False
|
|
# pbx_enabled: False
|
|
|
|
# pbx_use_apache: False # 2023-04-03: Set to 'True' if nec -- please also
|
|
# pbx_use_nginx: True # read github.com/iiab/iiab/issues/2914 & #2916, THX!
|
|
|
|
# 2023-04-03: For EXPERIMENTAL testing on Raspberry Pi... (#3489, PR #3523)
|
|
# asterisk_rpi_patch: True
|
|
|
|
# asterisk_chan_dongle: False
|
|
|
|
# pbx_signaling_ports_chan_sip: 5160:5161
|
|
# pbx_signaling_ports_chan_pjsip: 5060
|
|
# pbx_data_ports: 10000:20000
|
|
# pbx_http_port: 83
|
|
|
|
# All above are set in: github.com/iiab/iiab/blob/master/vars/default_vars.yml
|
|
# If nec, change them by editing /etc/iiab/local_vars.yml prior to installing!
|
|
|
|
|
|
asterisk_url: https://downloads.asterisk.org/pub/telephony/asterisk
|
|
asterisk_src_file: asterisk-21-current.tar.gz
|
|
asterisk_src_dir: "{{ iiab_base }}/asterisk" # /opt/iiab
|
|
|
|
# freepbx_url: https://mirror.freepbx.org/modules/packages/freepbx/7.4
|
|
# freepbx_src_file: freepbx-16.0-latest.tgz # 2022-05-25 #3228: Filename has become bogus (as it's not really the latest!) Manually unpacking the latest .tar.gz for FreePBX 16.x from https://github.com/FreePBX/framework/tags to /opt/iiab/freepbx can work if absolutely nec.
|
|
freepbx_git_url: https://github.com/FreePBX/framework
|
|
freepbx_git_branch: release/17.0 # STILL IN FLUX AS OF FEB 2024: https://github.com/FreePBX/framework/tree/release/17.0
|
|
freepbx_src_dir: "{{ iiab_base }}/freepbx"
|
|
freepbx_install_dir: /var/www/html/freepbx
|
|
|
|
asterisk_db_host: localhost
|
|
asterisk_db_user: asterisk
|
|
asterisk_db_dbname: asterisk
|
|
asterisk_db_password: asterisk
|
|
asterisk_db_cdrdbname: asteriskcdrdb
|
|
|
|
chan_dongle_url: https://github.com/wdoekes/asterisk-chan-dongle/archive
|
|
chan_dongle_src_file: master.zip
|
|
chan_dongle_src_dir: "{{ iiab_base }}/chan_dongle"
|