Difference between revisions of "Freebsd FusionPBX Install -dead"

From FusionPBX
Jump to: navigation, search
(FusionPbx install on FreeBSD)
 
(59 intermediate revisions by 4 users not shown)
Line 1: Line 1:
==FusionPbx install on FreeBSD==
 
Note: this is a dev/test port.<br>
 
<br>
 
Grab the devport from here:<br>
 
  http://dl.dropbox.com/u/152504/fusionpbx-svn.tgz
 
tar xzvf fusionpbx-svn.tgz in a directory like /home/work<br>
 
cd /home/work/fusionpbx-svn<br>
 
make svn-clean<br>
 
make rmconfig<br>
 
make svn <br>
 
make svn-tar<br>
 
make update-plist<br>
 
make install clean<br>
 
  
==NginX Setup==
 
Replace :<br>
 
        location / {
 
            root  /usr/local/www/nginx;
 
            index  index.html index.htm;
 
        }
 
 
Witch:<br>
 
        location / {
 
            root  /usr/local/www/fusionpbx;
 
            index  index.php index.html index.htm;
 
        }
 
 
Replace :<br>
 
        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
 
        #
 
        #location ~ \.php$ {
 
        #    root          html;
 
        #    fastcgi_pass  127.0.0.1:9000;
 
        #    fastcgi_index  index.php;
 
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
 
        #    include        fastcgi_params;
 
        #}
 
 
with:<br>
 
 
        pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
 
       
 
        location ~ \.php$ {
 
            root          html;
 
            fastcgi_pass  127.0.0.1:9000;
 
            fastcgi_index  index.php;
 
            fastcgi_param  SCRIPT_FILENAME  /usr/local/www/fusionpbx$fastcgi_script_name;
 
            include        fastcgi_params;
 
        }
 
 
==Apache Setup==
 
 
==Lighttpd Setup==
 
 
==PgSQL Setup==
 
TO set and configure PgSQL for use with FusionPBX,<br>
 
Follow this line for line.<br>
 
su pgsql<br>
 
initdb -D /usr/local//pgsql/data<br>
 
postmaster -D /usr/local/pgsql/data >logfile 2>&1 & <br>
 
createuser -s -e FusionPBX<br>
 
createdb -O FusionPBX FusionPBX<br>
 
psql -d FusionPBX -U FusionPBX<br>
 
alter user FusionPBX with password 'pbx2010' or any passwd you want;<br>
 
exit from su back to root<br>
 
/usr/local/etc/rc.d/postgresql restart<br>
 
su pgsql<br>
 
psql -f /usr/local/www/fusionpbx/includes/install/sql/pgsql.sql FusionPBX<br>
 
 
==MySql Setup==
 

Latest revision as of 12:48, 10 July 2011