ansible-nodejs-nginx-superv.../defaults/main.yml

22 lines
563 B
YAML
Raw Normal View History

---
# defaults file for nodejs-nginx-supervisor
web_root: /srv/www
nodejs_app_name: "nodejs_app"
nodejs_app_port: 3000
nodejs_app_script: "src/index.js"
nodejs_app_root_path: "{{ web_root }}/{{ nodejs_app_name }}"
nodejs_app_static_path: "{{ web_root }}/{{ nodejs_app_name }}/static"
2016-05-19 07:52:46 -04:00
nodejs_app_hostname: localhost
2016-05-19 07:52:46 -04:00
nodejs_app_supervisor_command: "PORT={{ nodejs_app_port }} node {{ nodejs_app_root_path }}/{{ nodejs_app_script }}"
nodejs_version_family: "5.x"
# Other valid value is 4.x
nodejs_app_global_install:
- browserify
- babel-cli
- less