Remove skip_common_setup flag
This commit is contained in:
parent
a54b847294
commit
bc3310066a
17 changed files with 106 additions and 126 deletions
|
|
@ -5,14 +5,14 @@
|
|||
|
||||
- name: copy nginx config
|
||||
template:
|
||||
src: "nginx.conf.j2"
|
||||
dest: "/etc/nginx/nginx.conf"
|
||||
src: 'nginx.conf.j2'
|
||||
dest: '/etc/nginx/nginx.conf'
|
||||
owner: root
|
||||
group: root
|
||||
mode: "0644"
|
||||
mode: '0644'
|
||||
|
||||
- name: remove default site
|
||||
file:
|
||||
path: "/etc/nginx/sites-enabled/default"
|
||||
path: '/etc/nginx/sites-enabled/default'
|
||||
state: absent
|
||||
notify: restart nginx
|
||||
|
|
|
|||
Reference in a new issue