ansible-nginx-uwsgi-supervisor/defaults/main.yml

23 lines
619 B
YAML

---
# defaults file for ansible-nginx-uwsgi-supervisor
# Web root paths + app name + home
uwsgi_web_root_path: /srv/www
uwsgi_web_server_group: www-data
uwsgi_app_name: app
uwsgi_app_root_path: "{{ uwsgi_web_root_path }}/{{ uwsgi_app_name }}_webapp"
# NGINX
uwsgi_app_hostname: localhost
uwsgi_app_static_path: "{{ uwsgi_app_root_path }}/{{ uwsgi_app_name }}/static/"
# UWSGI
uwsgi_app_port: 8000
uwsgi_app_executable: "app:make_wsgi_app()"
uwsgi_app_envs: {}
# Virtualenvs
uwsgi_virtualenv_root_path: "{{ uwsgi_web_root_path }}/virtualenvs"
uwsgi_app_venv: "{{ uwsgi_virtualenv_root_path }}/{{ uwsgi_app_name }}"