我想知道Chef服务器是否可以使用http而不是https运行。如果可以更改端口。也许还有web root / url?
例如在/etc/opschode/chef-server.rb中。当我把
nginx['non_ssl_port'] = 8080
nginx['enable_non_ssl'] = true
nginx['x_forwarded_proto'] = 'http'
Chef会将http://myserver:8080重定向到https(端口443)并最终进入某种重定向循环。
是否可以在Chef中更改这些类型的设置?
答案 0 :(得分:1)
omnibus-chef-server installation中有一个关于厨师服务器网址的选项,也许可以提供帮助。
default['chef_server']['nginx']['url'] = "https://#{node['fqdn']}"