1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00
iiab/roles/pbx/templates/freepbx.conf.j2

22 lines
477 B
Text
Raw Normal View History

<VirtualHost *:{{ pbx_http_port }}>
2019-01-18 07:14:36 +00:00
ServerAdmin admin@box.lan
2019-01-18 07:14:36 +00:00
DocumentRoot /var/www/html/
<Directory {{ freepbx_install_dir }}>
AllowOverride All
Options Indexes FollowSymLinks
2019-01-18 07:14:36 +00:00
Require all granted
</Directory>
<IfModule mpm_itk_module>
AssignUserId asterisk asterisk
</IfModule>
php_value session.save_path /var/lib/php/asterisk_sessions/
2019-01-18 07:14:36 +00:00
ErrorLog ${APACHE_LOG_DIR}/pbx-error.log
CustomLog ${APACHE_LOG_DIR}/pbx-access.log combined
</VirtualHost>