30 lines
835 B
YAML
30 lines
835 B
YAML
---
|
|
# vars file for ansible-nginx-uwsgi-supervisor
|
|
|
|
# Web root paths + app name + home
|
|
app_name: rookeries
|
|
web_root_path: /srv/www
|
|
web_server_group: www-data
|
|
web_user: "{{ ansible_env.SUDO_USER }}"
|
|
app_home: "{{ web_root_path }}/{{ app_name }}_webapp"
|
|
|
|
# Virtualenvs
|
|
virtualenv_root: "{{ web_root_path }}/virtualenvs"
|
|
uwsgi_venv: "{{ virtualenv_root }}/uwsgi"
|
|
app_venv: "{{ virtualenv_root }}/{{ app_name }}"
|
|
|
|
# NGINX
|
|
nginx_hostname: localhost
|
|
nginx_app_static: "{{ app_home }}/{{ app_name }}/static/"
|
|
nginx_app_conf: "{{ app_name }}_uwsgi_nginx.conf"
|
|
|
|
# Supervisor
|
|
supervisor_app_config: "{{ app_name }}_supervisor.conf"
|
|
|
|
# UWSGI
|
|
uwsgi_config: "{{ web_root_path }}/config/uwsgi"
|
|
uwsgi_app_ini: "{{ app_name }}_uwsgi.ini"
|
|
uwsgi_port: 8001
|
|
uwsgi_service_name: "{{ app_name }}_uwsgi"
|
|
uwsgi_app_executable: rookeries:make_rookeries_app()
|