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:
@ -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
|
||||
|
Reference in New Issue
Block a user