--- - name: Install nginx apt: name=nginx state=present - name: Copy nginx configuration for wordpress template: src=default.conf dest=/etc/nginx/conf.d/default.conf notify: restart nginx mkdir -p /srv/http/default - name: Setup default nginx pages copy: src: "{{item.src}}" dest: "/srv/http/default/www/{{item.dest}}" owner: www-data group: www-data force: no tags: - nginx with_items: - {src: "static_files/nginx_default_404.html", dest: "404.html"} - {src: "static_files/nginx_default_50x.html", dest: "50x.html"} - {src: "static_files/nginx_default_favicon.png", dest: "favicon.png"} - {src: "static_files/nginx_default_index.html", dest: "index.html"}