ansible-nginx/tasks/main.yml

42 lines
1.1 KiB
YAML
Raw Normal View History

2015-07-15 17:14:39 +07:00
---
2015-07-15 20:18:51 +07:00
- name: APT | Install nginx
apt: pkg={{ nginx_apt_package }} state=latest update_cache=yes cache_valid_time=3600
2015-07-30 18:02:21 +07:00
- name: SHELL | Get Nginx version
shell: nginx -v 2>&1 | sed -r 's#.*/##;' | cut -d ' ' -f 1
register: nginx_version
changed_when: false
2015-07-15 20:18:51 +07:00
- name: TEMPLATE | Deploy nginx.conf
2015-11-03 20:44:14 +07:00
template: >
src=etc/nginx/nginx.conf.j2
dest=/etc/nginx/nginx.conf
2015-11-03 20:38:47 +07:00
notify: reload nginx
2015-07-15 20:18:51 +07:00
- name: FILE | Create /etc/nginx/helpers
file: dest=/etc/nginx/helpers owner=root mode=0755 state=directory
- name: FILE | Create /etc/nginx/ssl
file: dest=/etc/nginx/ssl owner=root mode=0755 state=directory
#- name: COMMAND | Creates DH file
# command: openssl dhparam -out {{ nginx_dh_path }} {{ nginx_dh_length }}
# args:
# creates: "{{ nginx_dh_path }}"
- name: TEMPLATE | Deploy all helpers
2015-11-03 20:44:14 +07:00
template: >
src={{ item }}
dest=/etc/nginx/helpers/{{ item | basename | regex_replace('\.j2$','') }}
2015-07-15 20:18:51 +07:00
with_fileglob: '../templates/etc/nginx/helpers/*.j2'
notify: reload nginx
2015-07-15 21:26:27 +07:00
- name: INCLUDE | Upstream configuration
include: upstream.yml
2015-07-15 20:18:51 +07:00
when: nginx_php
- name: INCLUDE | Vhosts configuration
include: vhost.yml