--- - name: APT | Install nginx and dependencies apt: pkg={{ item }} state=latest update_cache=yes cache_valid_time=3600 with_items: - "{{ nginx_apt_package }}" - python-passlib - name: SHELL | Get Nginx version shell: nginx -v 2>&1 | sed -r 's#.*/##;' | cut -d ' ' -f 1 register: nginx_version changed_when: false - name: TEMPLATE | Deploy nginx.conf template: > src=etc/nginx/nginx.conf.j2 dest=/etc/nginx/nginx.conf notify: reload nginx - name: INCLUDE | Fix legacy include: legacy.yml - name: FILE | Create folders file: dest={{ item }} owner=root mode=0755 state=directory with_items: "{{ nginx_dirs }}" #- 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 template: > src={{ item }} dest={{ nginx_helper_dir }}/{{ item | basename | regex_replace('\.j2$','') }} with_fileglob: '../templates/etc/nginx/helper/*.j2' notify: reload nginx - name: INCLUDE | Upstream configuration include: upstream.yml when: nginx_php - name: INCLUDE | htpasswd configuration include: htpasswd.yml - name: INCLUDE | Vhosts configuration include: vhost.yml