2018-02-20 21:28:14 +01:00
|
|
|
---
|
|
|
|
- name: "(Setup: NGINX Plus) Setup NGINX Plus API"
|
2018-04-07 01:29:49 +02:00
|
|
|
blockinfile:
|
|
|
|
path: "{{ (http_template_enable) | ternary('/etc/nginx/conf.d/http/api.conf','/etc/nginx/conf.d/api.conf') }}"
|
|
|
|
create: yes
|
|
|
|
block: |
|
|
|
|
server {
|
|
|
|
listen 8080;
|
|
|
|
location /api {
|
|
|
|
{% if rest_api_write %}
|
|
|
|
api write=on;
|
|
|
|
{% else %}
|
|
|
|
api;
|
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
{% if rest_api_dashboard %}
|
|
|
|
location = /dashboard.html {
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
}
|
2018-02-20 21:28:14 +01:00
|
|
|
notify: "(Handler: All OSs) Reload NGINX"
|