X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/492559ef865a09dba696babf6178a05b33cc2eb8..30d9ea905c709817bb4820380f230b5b1724b1f8:/cookbooks/dev/recipes/default.rb diff --git a/cookbooks/dev/recipes/default.rb b/cookbooks/dev/recipes/default.rb index aefd6594d..d6b27a06d 100644 --- a/cookbooks/dev/recipes/default.rb +++ b/cookbooks/dev/recipes/default.rb @@ -20,41 +20,48 @@ require "yaml" require "securerandom" -include_recipe "apache::ssl" +include_recipe "apache" include_recipe "passenger" include_recipe "git" include_recipe "mysql" include_recipe "nodejs" include_recipe "postgresql" - -package "php" -package "php-cgi" -package "php-cli" -package "php-curl" -package "php-db" -package "php-fpm" -package "php-imagick" -package "php-mcrypt" -package "php-mysql" -package "php-pear" -package "php-pgsql" -package "php-sqlite3" - -package "pngcrush" -package "pngquant" - -package "python" -package "python-argparse" -package "python-beautifulsoup" -package "python-cheetah" -package "python-dateutil" -package "python-magic" -package "python-psycopg2" -package "python-gdal" +include_recipe "python" + +package %w[ + php + php-cgi + php-cli + php-curl + php-db + php-fpm + php-imagick + php-mcrypt + php-mysql + php-pear + php-pgsql + php-sqlite3 +] + +package %w[ + pngcrush + pngquant +] + +package %w[ + python + python-argparse + python-beautifulsoup + python-cheetah + python-dateutil + python-magic + python-psycopg2 + python-gdal +] nodejs_package "svgo" -easy_install_package "geojson" +python_package "geojson" apache_module "env" apache_module "expires" @@ -91,6 +98,28 @@ file "/etc/php/7.0/fpm/pool.d/www.conf" do notifies :reload, "service[php7.0-fpm]" end +directory "/srv/dev.openstreetmap.org" do + owner "root" + group "root" + mode 0o755 +end + +template "/srv/dev.openstreetmap.org/index.html" do + source "dev.html.erb" + owner "root" + group "root" + mode 0o644 +end + +ssl_certificate "dev.openstreetmap.org" do + domains "dev.openstreetmap.org" + notifies :reload, "service[apache2]" +end + +apache_site "dev.openstreetmap.org" do + template "apache.dev.erb" +end + package "phppgadmin" template "/etc/phppgadmin/config.inc.php" do @@ -104,6 +133,11 @@ file "/etc/apache2/conf.d/phppgadmin" do action :delete end +ssl_certificate "phppgadmin.dev.openstreetmap.org" do + domains "phppgadmin.dev.openstreetmap.org" + notifies :reload, "service[apache2]" +end + apache_site "phppgadmin.dev.openstreetmap.org" do template "apache.phppgadmin.erb" end @@ -112,7 +146,7 @@ search(:accounts, "*:*").each do |account| name = account["id"] details = node[:accounts][:users][name] || {} - next unless %w(user administrator).include?(details[:status]) + next unless %w[user administrator].include?(details[:status]) user_home = details[:home] || account["home"] || "#{node[:accounts][:home]}/#{name}" @@ -129,6 +163,11 @@ search(:accounts, "*:*").each do |account| notifies :reload, "service[php7.0-fpm]" end + ssl_certificate "#{name}.dev.openstreetmap.org" do + domains ["#{name}.dev.openstreetmap.org", "#{name}.dev.osm.org"] + notifies :reload, "service[apache2]" + end + apache_site "#{name}.dev.openstreetmap.org" do template "apache.user.erb" directory "#{user_home}/public_html" @@ -198,7 +237,7 @@ if node[:postgresql][:clusters][:"9.5/main"] group "apis" mode 0o644 variables :site => site_name - notifies :run, "execute[#{rails_directory}]" + notifies :restart, "rails_port[#{site_name}]" end ssl_certificate site_name do @@ -262,3 +301,31 @@ if node[:postgresql][:clusters][:"9.5/main"] end end end + +directory "/srv/ooc.openstreetmap.org" do + owner "root" + group "root" + mode 0o755 +end + +remote_directory "/srv/ooc.openstreetmap.org/html" do + source "ooc" + owner "root" + group "root" + mode 0o755 + files_owner "root" + files_group "root" + files_mode 0o644 +end + +ssl_certificate "ooc.openstreetmap.org" do + domains ["ooc.openstreetmap.org", + "a.ooc.openstreetmap.org", + "b.ooc.openstreetmap.org", + "c.ooc.openstreetmap.org"] + notifies :reload, "service[apache2]" +end + +apache_site "ooc.openstreetmap.org" do + template "apache.ooc.erb" +end