X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/cc72dc2d2fdd53030fb34a0f0842002bcc105f68..f626dd7711d75c0d18af02449f20b58c99ea27d8:/cookbooks/subversion/templates/default/apache.erb diff --git a/cookbooks/subversion/templates/default/apache.erb b/cookbooks/subversion/templates/default/apache.erb index ae5c40317..188051eea 100644 --- a/cookbooks/subversion/templates/default/apache.erb +++ b/cookbooks/subversion/templates/default/apache.erb @@ -1,36 +1,53 @@ # DO NOT EDIT - This file is being maintained by Chef -<% [80, 443].each do |port| -%> -> - ServerName <%= @name %> - ServerAdmin webmaster@openstreetmap.org -<% if port == 443 -%> + + ServerName <%= @name %> + ServerAdmin webmaster@openstreetmap.org - SSLEngine on -<% end -%> + SSLEngine on + SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem + SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key + + CustomLog /var/log/apache2/<%= @name %>-access.log combined + ErrorLog /var/log/apache2/<%= @name %>-error.log + + RedirectPermanent /applications/editors/josm/plugins/cadastre-fr/images/cadastre_small.png https://raw.githubusercontent.com/openstreetmap/svn-archive/main/applications/editors/josm/plugins/cadastre-fr/images/cadastre_small.png + RedirectPermanent / https://github.com/openstreetmap/svn-archive - CustomLog /var/log/apache2/<%= @name %>-access.log combined - CustomLog /var/log/apache2/<%= @name %>-svn-access.log "%h %t %u %{SVN-ACTION}e" env=SVN-ACTION - ErrorLog /var/log/apache2/<%= @name %>-error.log + ErrorDocument 404 https://github.com/openstreetmap/svn-archive - - DAV svn - SVNPath <%= @directory %> + +<% unless @aliases.empty? -%> - AuthType Basic - AuthName "<%= @realm %>" - AuthUserFile <%= @password_file %> + + ServerName <%= @aliases.first %> +<% @aliases.drop(1).each do |alias_name| -%> + ServerAlias <%= alias_name %> +<% end -%> + ServerAdmin webmaster@openstreetmap.org - LimitXMLRequestBody 0 - LimitRequestBody 0 + SSLEngine on + SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem + SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key - - Require all granted - + CustomLog /var/log/apache2/<%= @name %>-access.log combined + ErrorLog /var/log/apache2/<%= @name %>-error.log - - Require valid-user - - + RedirectPermanent / https://<%= @name %>/ <% end -%> + + + ServerName <%= @name %> +<% @aliases.each do |alias_name| -%> + ServerAlias <%= alias_name %> +<% end -%> + + ServerAdmin webmaster@openstreetmap.org + + CustomLog /var/log/apache2/<%= @name %>-access.log combined + ErrorLog /var/log/apache2/<%= @name %>-error.log + + RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/ + RedirectPermanent / https://<%= @name %>/ +