diff --git a/testsite/playbooks/roles/wsgihello2/meta/main.yml b/testsite/playbooks/roles/wsgihello2/meta/main.yml new file mode 100644 index 0000000000000000000000000000000000000000..8d3aae6fc26cfe0a749d1bea1c439afe2d96c951 --- /dev/null +++ b/testsite/playbooks/roles/wsgihello2/meta/main.yml @@ -0,0 +1,20 @@ +--- + +dependencies: + - role: wsgi_website + fqdn: wsgireq.{{ testsite_domain }} + admin_uid: 3002 + uid: 2002 + wsgi_application: wsgi:application + static_locations: + - /static/ + https_tls_key: "{{ lookup('file', inventory_dir + '/tls/wsgireq.' + testsite_domain + '_https.key') }}" + https_tls_certificate: "{{ lookup('file', inventory_dir + '/tls/wsgireq.' + testsite_domain + '_https.pem') }}" + environment_variables: + WEBSITE_NAME: "Majic Ansible Roles Test Site" + wsgi_requirements: + - futures==3.0.1 + - gunicorn==19.6.0 + - role: database + db_name: wsgi_{{ testsite_domain_underscores }} + db_password: wsgi_{{ testsite_domain_underscores }} \ No newline at end of file