summaryrefslogtreecommitdiffstats
path: root/tasks/httpd.yml
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/httpd.yml')
-rw-r--r--tasks/httpd.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/tasks/httpd.yml b/tasks/httpd.yml
index 22757d5..2e1fa98 100644
--- a/tasks/httpd.yml
+++ b/tasks/httpd.yml
@@ -2,6 +2,12 @@
- name: Install nginx
apt: pkg=nginx-light
+- name: Install nginx modules
+ apt: pkg={{ packages }}
+ vars:
+ packages:
+ - libnginx-mod-http-brotli-static
+
- name: Start nginx
service: name=nginx enabled=true state=started