ansible-roles/varnish/tasks/main.yml

23 lines
760 B
YAML
Raw Normal View History

2016-11-15 20:00:26 +01:00
---
- name: Install Varnish
apt: name=varnish state=present
- name: Remove default varnish configuration files
file:
path: "{{ item }}"
state: absent
with_fileglob: "/etc/defaults/varnish*"
- name: Copy Varnish service configuration file
copy:
src: "/lib/systemd/system/varnish.service"
dest: "/etc/systemd/system/"
2016-11-15 20:48:28 +01:00
force: no
2016-11-15 20:00:26 +01:00
- name: Modify Varnish configuration file
lineinfile:
dest: "/etc/systemd/system/varnish.service"
regexp: "^ExecStart="
2016-11-15 20:48:28 +01:00
line: "ExecStart=/usr/sbin/varnishd -a 0.0.0.0:80 -T localhost:6082 -f /etc/varnish/default.vcl -S /etc/varnish/secret -s malloc,2G -p thread_pools={{ thread_pools }} -p thread_pool_add_delay=2 -p thread_pool_min=500 -p thread_pool_max=5000"
2016-11-15 20:00:26 +01:00
notify: reload systemctl