[Bug 238234] [new port] www/fusionpbx: fusionpbx 4.4.1 is a php7 webgui for freeswitch

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Thu May 30 03:54:10 UTC 2019


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=238234

            Bug ID: 238234
           Summary: [new port] www/fusionpbx: fusionpbx 4.4.1 is a php7
                    webgui for freeswitch
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: ports-bugs at FreeBSD.org
          Reporter: richard2891 at gmail.com

Created attachment 204711
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=204711&action=edit
fusionpbx 4.4.1 a php7 webgui for freeswitch

new port of fusionpbx 4.4.1 a php7 webgui for freeswitch

installs fusionpbx 4.4.1 some additional setup are need after see blow.

#run freeswith under www user and group
sysrc memcached_enable="YES"
sysrc freeswitch_enable="YES"
sysrc freeswitch_flags="-nc -nonat"
sysrc freeswitch_user="www"
sysrc freeswitch_group="www"

#copy the default conf directory
mkdir -p /usr/local/etc/freeswitch
cp -R /usr/local/www/fusionpbx/resources/templates/conf/*
/usr/local/etc/freeswitch

#copy the scripts
cp -R /usr/local/www/fusionpbx/resources/install/scripts
/usr/local/share/freeswitch

#default ownership
chown -R www:www /usr/local/etc/freeswitch
chown -R www:www /var/lib/freeswitch
chown -R www:www /usr/local/share/freeswitch
chown -R www:www /var/log/freeswitch
chown -R www:www /var/run/freeswitch

#install nginx or apache24 and mod_php72

#optinal install postgresql10
sysrc postgresql_enable="YES"

/usr/local/etc/rc.d/postgresql initdb

sudo -u postgres /usr/local/bin/pg_ctl -D /var/db/postgres/data10 -l logfile
start

service postgresql restart

sudo -u postgres psql -c "DROP DATABASE fusionpbx;"
sudo -u postgres psql -c "DROP DATABASE freeswitch;"
sudo -u postgres psql -c "DROP ROLE fusionpbx;"
sudo -u postgres psql -c "DROP ROLE freeswitch;"

sudo -u postgres psql -c "CREATE DATABASE fusionpbx;"
sudo -u postgres psql -c "CREATE DATABASE freeswitch;"
sudo -u postgres psql -c "CREATE ROLE fusionpbx WITH SUPERUSER LOGIN PASSWORD
'$DB_PASSWORD';"
sudo -u postgres psql -c "CREATE ROLE freeswitch WITH SUPERUSER LOGIN PASSWORD
'$DB_PASSWORD';"
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE fusionpbx to
fusionpbx;"
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE freeswitch to
fusionpbx;"
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE freeswitch to
freeswitch;"

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list