You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
336 B
14 lines
336 B
5 years ago
|
<?php
|
||
|
|
||
|
// {{ ansible_managed }}
|
||
|
|
||
|
$amp_conf['AMPDBUSER'] = '{{ fpbx_db_user }}';
|
||
|
$amp_conf['AMPDBPASS'] = '{{ fpbx_db_pass }}';
|
||
|
$amp_conf['AMPDBHOST'] = 'localhost';
|
||
|
$amp_conf['AMPDBNAME'] = '{{ fpbx_db_name }}';
|
||
|
$amp_conf['AMPDBENGINE'] = 'mysql';
|
||
|
$amp_conf['datasource'] = '';
|
||
|
|
||
|
require_once('/opt/freepbx/web/admin/bootstrap.php');
|
||
|
?>
|