wiki:CustomAccount

Version 3 (modified by chris-mac, 3 years ago) (diff)

--

When QuteCom is build with Custom Account enabled (see Build Options), SIP account details can be obtained from HTTP server in order to auto-provision SIP user configuration.

Below you can find dummy implementation of Custom Account server.

Installation

Place index.php attached to this page in /var/www/oss directory on your web server.

Add the following to your apache configuration:

  Alias /cirpack/index.php /var/www/oss/index.php
  Alias /directory/index.php /var/www/oss/index.php
  Alias /info/info.php /var/www/oss/index.php
  Alias /sms/sendsms.php /var/www/oss/index.php
  Alias /QuteCom/update/windows.xml /var/www/oss/index.php
  Alias /QuteCom/update/linux.xml /var/www/oss/index.php
  Alias /QuteCom/update/osx_ppc.xml /var/www/oss/index.php
  Alias /QuteCom/update/osx_x86.xml /var/www/oss/index.php
  Alias /softphone-sso/sso2.php /var/www/oss/index.php
  Alias /softphone-subscription/index.php /var/www/oss/index.php  

  <Directory /var/www/oss>
    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} !-f
    # no, so we redirect to our front web controller
    RewriteRule ^(.*)$ index.php [QSA,L]
  </Directory>

Attachments (1)

Download all attachments as: .zip