You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
I tried to use apache for webserver rather than nginx by setting node['kibana']['webserver'] to 'apache'. However, it seems like the template is hardcoded in install.rb:
kibana_web 'kibana' do
type lazy { node['kibana']['webserver'] }
docroot docroot
es_server node['kibana']['es_server']
kibana_port node['kibana']['java_webserver_port']
template 'kibana-nginx_file.conf.erb'
not_if { node['kibana']['webserver'] == '' }
end
Wanted to check if I was doing something wrong. Can someone help?
Thanks!
The text was updated successfully, but these errors were encountered:
Hello! Indeed, it does look like the template is hard-coded. I'd be glad to merge/review a PR to implement this, but I haven't been able to find the time to implement it myself.
Hello,
I tried to use apache for webserver rather than nginx by setting
node['kibana']['webserver']
to'apache'
. However, it seems like the template is hardcoded in install.rb:Wanted to check if I was doing something wrong. Can someone help?
Thanks!
The text was updated successfully, but these errors were encountered: