# limitations under the License.
#
-include_recipe "apache::ssl"
+include_recipe "apache"
# chef_package = "chef-server-core_#{node[:chef][:server][:version]}_amd64.deb"
#
source "server.rb.erb"
owner "root"
group "root"
- mode 0o644
+ mode 0o640
notifies :run, "execute[chef-server-reconfigure]"
end
group "root"
end
+execute "chef-server-restart" do
+ action :nothing
+ command "chef-server-ctl restart"
+ user "root"
+ group "root"
+end
+
systemd_service "chef-server" do
description "Chef server"
after "network.target"
service "chef-server" do
action [:enable, :start]
+ subscribes :restart, "systemd_service[chef-server]"
end
apache_module "alias"
apache_module "proxy_http"
+ssl_certificate "chef.openstreetmap.org" do
+ domains ["chef.openstreetmap.org", "chef.osm.org"]
+ notifies :reload, "service[apache2]"
+ notifies :run, "execute[chef-server-restart]"
+end
+
apache_site "chef.openstreetmap.org" do
template "apache.erb"
end