diff options
| author | Patrick Uiterwijk <puiterwijk@redhat.com> | 2017-02-14 16:11:02 +0000 |
|---|---|---|
| committer | Patrick Uiterwijk <puiterwijk@redhat.com> | 2017-02-14 16:11:09 +0000 |
| commit | fbbf28f32c5d4e9394b379eb882972713030c264 (patch) | |
| tree | 3c80754a7b2ffd9ff1efe05b5e9e36d3d0dad3f5 /roles/httpd/proxy/tasks | |
| parent | b09633d23c6744c78ac2bd772794f51564f2726c (diff) | |
| download | ansible-fbbf28f32c5d4e9394b379eb882972713030c264.tar.gz ansible-fbbf28f32c5d4e9394b379eb882972713030c264.tar.xz ansible-fbbf28f32c5d4e9394b379eb882972713030c264.zip | |
Remove keepalives configuration in production
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
Diffstat (limited to 'roles/httpd/proxy/tasks')
| -rw-r--r-- | roles/httpd/proxy/tasks/main.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/roles/httpd/proxy/tasks/main.yml b/roles/httpd/proxy/tasks/main.yml index 69a53fabb..33d07717a 100644 --- a/roles/httpd/proxy/tasks/main.yml +++ b/roles/httpd/proxy/tasks/main.yml @@ -23,7 +23,6 @@ with_items: - forwarded.conf - 00-namevirtualhost.conf - - 01-keepalives.conf - 02-ticketkey.conf - 03-reqtimeout.conf notify: @@ -32,6 +31,14 @@ - httpd - httpd/proxy +- name: Remove the keepalives configuration + file: path=/etc/httpd/conf.d/01-keepalives.conf state=absent + notify: + - reload proxyhttpd + tags: + - httpd + - httpd/proxy + - name: set the apache mpm to use event MPM copy: src=00-mpm.conf dest=/etc/httpd/conf.modules.d/00-mpm.conf notify: |
