29 lines
608 B
YAML
29 lines
608 B
YAML
|
---
|
||
|
|
||
|
# create network
|
||
|
- name: 'create network'
|
||
|
ansible.builtin.import_tasks: 'openappsec/network.yaml'
|
||
|
|
||
|
# install open-appsec
|
||
|
- name: 'install open-appsec'
|
||
|
ansible.builtin.import_tasks: 'openappsec/install.yaml'
|
||
|
|
||
|
|
||
|
# configure nginx
|
||
|
- name: 'configure nginx'
|
||
|
ansible.builtin.import_tasks: 'nginx/config.yaml'
|
||
|
|
||
|
# loop vhosts
|
||
|
- name: 'config - vhosts'
|
||
|
ansible.builtin.import_tasks: 'nginx/vhosts.yaml'
|
||
|
|
||
|
|
||
|
# import dehydrated
|
||
|
- name: 'dehydrated'
|
||
|
ansible.builtin.import_tasks: 'nginx/dehydrated.yaml'
|
||
|
|
||
|
|
||
|
# cleanup docker
|
||
|
- name: 'cleanup docker'
|
||
|
ansible.builtin.import_tasks: 'openappsec/cleanup.yaml'
|