mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
Merge pull request #1764 from m-anish/pbx_fix_new
freepbx_http_port should be pbx_http_port
This commit is contained in:
commit
d0fe595bd7
2 changed files with 3 additions and 3 deletions
|
@ -134,10 +134,10 @@
|
|||
state: absent
|
||||
when: not pbx_enabled
|
||||
|
||||
- name: FreePBX - Add {{ freepbx_http_port }} as a Listen directive to apache ports.conf
|
||||
- name: FreePBX - Add {{ pbx_http_port }} as a Listen directive to apache ports.conf
|
||||
lineinfile:
|
||||
path: /etc/apache2/ports.conf
|
||||
line: "Listen {{ freepbx_http_port }}"
|
||||
line: "Listen {{ pbx_http_port }}"
|
||||
insertafter: Listen 80
|
||||
|
||||
- name: FreePBX - Restart Apache service ({{ apache_service }})
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<VirtualHost *:{{ freepbx_http_port }}>
|
||||
<VirtualHost *:{{ pbx_http_port }}>
|
||||
|
||||
ServerAdmin admin@box.lan
|
||||
DocumentRoot /var/www/html/
|
||||
|
|
Loading…
Reference in a new issue