2014-12-22 18:03:40 -05:00
|
|
|
---
|
|
|
|
# defaults file for ansible-nginx-uwsgi-supervisor
|
2015-01-14 08:10:04 -05:00
|
|
|
|
|
|
|
# Web root paths + app name + home
|
|
|
|
web_root_path: /srv/www
|
|
|
|
web_server_group: www-data
|
2015-01-21 09:05:19 -05:00
|
|
|
|
|
|
|
app_name: app
|
|
|
|
app_root_path: "{{ web_root_path }}/{{ app_name }}_webapp"
|
2015-01-14 08:10:04 -05:00
|
|
|
|
|
|
|
# NGINX
|
2015-01-21 09:05:19 -05:00
|
|
|
app_nginx_hostname: localhost
|
|
|
|
app_nginx_static_path: "{{ app_root_path }}/{{ app_name }}/static/"
|
2015-01-14 08:10:04 -05:00
|
|
|
|
|
|
|
# UWSGI
|
2015-01-21 09:05:19 -05:00
|
|
|
app_uwsgi_port: 8000
|
|
|
|
app_uwsgi_executable: "app:make_wsgi_app()"
|
2015-03-24 08:05:57 -04:00
|
|
|
app_uwsgi_envs: {}
|