+ environment "BUNDLE_FROZEN" => "true",
+ "BUNDLE_WITHOUT" => "development:test",
+ "BUNDLE_PATH" => "vendor/bundle",
+ "BUNDLE_DEPLOYMENT" => "1",
+ "BUNDLE_JOBS" => node.cpu_cores.to_s
+ notifies :run, "bundle_exec[/srv/hardware.openstreetmap.org]"
+end
+
+bundle_exec "/srv/hardware.openstreetmap.org" do
+ action :nothing
+ command "jekyll build --trace --disable-disk-cache --baseurl=https://hardware.openstreetmap.org"
+ user "nobody"
+ group "nogroup"
+ environment "LANG" => "C.UTF-8",
+ "BUNDLE_PATH" => "vendor/bundle",
+ "BUNDLE_DEPLOYMENT" => "1"
+end
+
+ssl_certificate "hardware.openstreetmap.org" do
+ domains ["hardware.openstreetmap.org", "hardware.osm.org", "hardware.osmfoundation.org"]
+ notifies :reload, "service[apache2]"