0.1.4-DEV-20191031-074215

-------------------------
    * ADD:
      - added client_max_body_size in proxy_site.j2 template so sites may permit uploads of larger files

    * MODIFY:
      - modified several sites to make use of client_max_body_size option
This commit is contained in:
2019-10-31 07:42:49 -04:00
parent bba2602f4f
commit bd82ec227c
4 changed files with 52 additions and 29 deletions

View File

@ -1,10 +1,18 @@
---
# tasks file for zen_rev_proxy
- name: install nginx/aptitude
- name: install nginx/aptitude for debian nodes
package:
name : ['nginx','aptitude']
state : present
when : ansible_distribution == "Debian"
- name: install nginx for centos nodes
package:
name : nginx
state : present
when: ansible_distribution == "CentOS"
- name: enable nginx at boot time