I'm running chef-solo with chef-solo -c solo.rb -j node.json -ldebug and it's failing because nginx cookbook/recipe refers to user "www-data" which I don't have. Can I change the value in node.json file? My node.json looks like this:
{
"nginx": {
"user": "my_username"
},
"run_list": [
"recipe[nginx]",
"recipe[mysql::server]"
]
}
My problem is the Opscode nginx recipe appears to ignore this setting.