diff --git a/Vagrantfile b/Vagrantfile index 88514e7..3836d7b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -93,22 +93,22 @@ Vagrant.configure("2") do |config| chef.json = { 'working-dir': '/vagrant', 'app': { - 'name': 'change_me', + 'name': 'proxy', 'domain': 'localhost', }, - # 'nodejs': { - # 'working-dir': 'node_rtc', - # 'port': '8001' - # }, + 'nodejs': { + 'working-dir': 'nodejs', + 'port': '8001' + }, + 'redis':{ + 'unix': { + 'perm': '777' + } + }, # 'python': { # 'working-dir': 'django', # }, # 'db':{}, - # 'redis':{ - # 'unix': { - # 'perm': '777' - # } - # }, # 'django': { # 'settings_path': 'project/settings', # 'email': { diff --git a/ops/roles/common.rb b/ops/roles/common.rb index a468dbc..389f946 100644 --- a/ops/roles/common.rb +++ b/ops/roles/common.rb @@ -3,11 +3,11 @@ description "A basic role" run_list( # "recipe[t42-common::postgres]", - # "recipe[t42-common::redis]", - # "recipe[t42-common::nodejs]", + "recipe[t42-common::redis]", + "recipe[t42-common::nodejs]", # "recipe[t42-common::python]", - "recipe[t42-common::apache]", + # "recipe[t42-common::apache]", # "recipe[t42-common::openresty]", - "recipe[t42-common::php]", - "recipe[t42-common::mysql]", + # "recipe[t42-common::php]", + # "recipe[t42-common::mysql]", ) \ No newline at end of file