我在尝试禁用default_enabled_site
Nginx 时遇到了一些麻烦。
# My Cookbook
/cookbooks/my-server-book
- /recipes/
- /attributes/
metadata.rb
# Opscode Nginx
/cookbooks/nginx
我已经override['nginx']['enable_default_site'] = false
进入我的/cookbooks/my-server-book/attributes/default.rb
文件,但看起来 Nginx 食谱覆盖了我的更改
Recipe: nginx::commons_conf
* template[nginx.conf] action create (up to date)
* template[/etc/nginx/sites-available/default] action create (up to date)
* execute[nxdissite default] action run (skipped due to only_if)
我将不胜感激任何见解。
我在 node.json 文件中尝试了以下内容但无济于事:
{
"nginx": {
"default_site_enabled": false
},
"run_list": ["recipe[main]"]
}