summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--roles/httpd/website/tasks/main.yml14
-rw-r--r--roles/httpd/website/templates/blockchunked.conf4
2 files changed, 0 insertions, 18 deletions
diff --git a/roles/httpd/website/tasks/main.yml b/roles/httpd/website/tasks/main.yml
index 641457b83..12bc2333e 100644
--- a/roles/httpd/website/tasks/main.yml
+++ b/roles/httpd/website/tasks/main.yml
@@ -52,20 +52,6 @@
- httpd
- httpd/website
-- name: Copy over varnish workaround for {{name}}
- template: >
- src=blockchunked.conf
- dest=/etc/httpd/conf.d/{{name}}/blockchunked.conf
- owner=root
- group=root
- mode=0644
- notify:
- - reload proxyhttpd
- tags:
- - httpd
- - httpd/website
- - security/workaround
-
- name: And lastly, the robots.txt file
copy: >
src={{item}}
diff --git a/roles/httpd/website/templates/blockchunked.conf b/roles/httpd/website/templates/blockchunked.conf
deleted file mode 100644
index efae29c39..000000000
--- a/roles/httpd/website/templates/blockchunked.conf
+++ /dev/null
@@ -1,4 +0,0 @@
-# Workaround for https://www.varnish-cache.org/lists/pipermail/varnish-announce/2017-August/000722.html
-<If "%{HTTP:Transfer-Encoding} == 'chunked'">
- Require all denied
-</If>