2018-08-13 20:06:00 +00:00
|
|
|
---
|
|
|
|
- block:
|
2018-08-13 20:23:46 +00:00
|
|
|
- name: Add vhost configuration file
|
2018-08-13 20:06:00 +00:00
|
|
|
template:
|
|
|
|
src: nginx/vhost.j2
|
|
|
|
dest: "{{ unifi_nginx_vhost_dir }}/unifi"
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0640
|
|
|
|
notify: __nginx_reload
|
|
|
|
|
2018-08-13 20:23:46 +00:00
|
|
|
- name: Enable unifi vhost
|
2018-08-13 20:06:00 +00:00
|
|
|
file:
|
|
|
|
src: "{{ unifi_nginx_vhost_dir }}/unifi"
|
|
|
|
dest: "{{ unifi_nginx_vhost_symlink }}/unifi"
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
state: link
|
|
|
|
notify: __nginx_reload
|
|
|
|
when: unifi_nginx_vhost_symlink is defined
|
|
|
|
|
|
|
|
- name: Open ports in iptables
|
|
|
|
iptables_raw:
|
2018-08-13 20:11:43 +00:00
|
|
|
name: allow_unifi_nginx_proxy
|
2018-08-13 20:06:00 +00:00
|
|
|
state: present
|
2018-08-13 21:02:56 +00:00
|
|
|
rules: '-A OUTPUT -p tcp -d {{ unifi_server_ip }} -m --dport {{ unifi_server_port }} -j ACCEPT'
|
2018-08-13 20:06:00 +00:00
|
|
|
when: unifi_nginx_iptables_enabled
|
|
|
|
delegate_to: "{{ unifi_nginx_server }}"
|
|
|
|
become: True
|
|
|
|
become_user: root
|