专注于VoIP,Opensips,Kamailio等技术,QQ群:QQ群:293697898
一、引言 环境是依照kamailio官方相关文档操作的,但由于centos上httpd和apache2有所不同,但相关交叉的东西比较多,所以我们还是用debian来完成这个操作。
操作系统: Debian 7.5 64位
数据库: mysql或postgresql
kamailio版本: kamailio 4.2
二、 操作步骤 本文只列出siremis的安装步骤:
apt-get install apache2
a2enmod rewrite
apt-get install php5 php5-mysql php5-gd php5-curl
cd /var/www/
git clone https://github.com/asipto/siremis
cd siremis
make prepare
###这里会提示以下类似的
```shell
updating htaccess file...
updating app.inc file...
creating folders...
done
```
make chown
make apache-conf
将conf添加到apache的配置里,即
Alias /siremis "/var/www/siremis/siremis"
<Directory "/var/www/siremis/siremis">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
<FilesMatch "\.xml$">
Order deny,allow
Deny from all
</FilesMatch>
<FilesMatch "\.inc$">
Order deny,allow
Deny from all
</FilesMatch>
</Directory>
添加到 vim /etc/apache2/apache2.conf中,那么,就可以从 ip:port/siremis中开始kamailio配置之旅了。