# limitations under the License.
#
+node.default[:ssl][:certificates] = node[:ssl][:certificates] | ["openstreetmap"]
+
include_recipe "apache::ssl"
include_recipe "mysql"
include_recipe "git"
permissions "donate@localhost" => :all
end
+directory "/srv/donate.openstreetmap.org" do
+ owner "donate"
+ group "donate"
+ mode 0o755
+end
+
git "/srv/donate.openstreetmap.org" do
action :sync
repository "git://github.com/osmfoundation/donation-drive.git"
group "donate"
end
+directory "/srv/donate.openstreetmap.org/data" do
+ owner "donate"
+ group "donate"
+ mode 0o755
+end
+
apache_site "donate.openstreetmap.org" do
template "apache.erb"
end