21 lines
827 B
YAML
21 lines
827 B
YAML
---
|
|
# App name reused from the nginx-uwsgi-supervisor roles
|
|
app_name: "{{ rookeries_app_name }}"
|
|
web_root_path: /srv/www
|
|
virtualenv_root_path: "{{ web_root_path }}/virtualenvs"
|
|
web_server_group: www-data
|
|
|
|
# Introduced from deployment playbook
|
|
|
|
|
|
rookeries_package: "{{ rookeries_deploy_source }}.tar.bz2"
|
|
rookeries_deploy_dir: "{{ web_root_path }}/{{ rookeries_deploy_source }}"
|
|
rookeries_venv: "{{ virtualenv_root_path }}/{{ rookeries_deploy_source }}"
|
|
rookeries_app_symlink: "{{ web_root_path }}/{{ rookeries_deploy_target }}"
|
|
rookeries_venv_symlink: "{{ virtualenv_root_path }}/{{ rookeries_deploy_target }}"
|
|
|
|
rookeries_package_path: "{{ rookeries_package }}"
|
|
|
|
# Extra virtualenv if working in a dev environment to provide the mailsink testing server
|
|
rookeries_dev_email_server_venv: "{{ virtualenv_root_path }}/mail_server"
|