Remove mentions of rookeries in app values to make the role more generic.
Relicense role under BSD role to make role more accessible to other devs.
This commit is contained in:
parent
ddf16090ac
commit
5d330c0767
|
@ -2,7 +2,7 @@
|
|||
# defaults file for ansible-nginx-uwsgi-supervisor
|
||||
|
||||
# Web root paths + app name + home
|
||||
app_name: rookeries
|
||||
app_name: app
|
||||
web_root_path: /srv/www
|
||||
web_server_group: www-data
|
||||
app_home: "{{ web_root_path }}/{{ app_name }}_webapp"
|
||||
|
@ -13,4 +13,4 @@ nginx_app_static: "{{ app_home }}/{{ app_name }}/static/"
|
|||
|
||||
# UWSGI
|
||||
uwsgi_port: 8001
|
||||
uwsgi_app_executable: rookeries:make_rookeries_app()
|
||||
uwsgi_app_executable: "app:make_wsgi_app()"
|
||||
|
|
|
@ -1,16 +1,9 @@
|
|||
---
|
||||
galaxy_info:
|
||||
author: Dorian Pula
|
||||
description: NGINX UWSGI and supervisor role
|
||||
description: Elegant NGINX, UWSGI and supervisor role
|
||||
company: Amber Penguin Software
|
||||
# Some suggested licenses:
|
||||
# - BSD (default)
|
||||
# - MIT
|
||||
# - GPLv2
|
||||
# - GPLv3
|
||||
# - Apache
|
||||
# - CC-BY
|
||||
license: AGPLv3
|
||||
license: BSD
|
||||
min_ansible_version: 1.6
|
||||
platforms:
|
||||
- name: Ubuntu
|
||||
|
|
Loading…
Reference in New Issue