X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/4e01b4b17f139ae35a9564bb0221ce0842b3b90f..68bbe21da0b2f20cb1856fc68f8cbac9c637285d:/cookbooks/mediawiki/templates/default/apache.erb?ds=inline diff --git a/cookbooks/mediawiki/templates/default/apache.erb b/cookbooks/mediawiki/templates/default/apache.erb index dc3dc5eb0..d3d25a3a1 100644 --- a/cookbooks/mediawiki/templates/default/apache.erb +++ b/cookbooks/mediawiki/templates/default/apache.erb @@ -8,7 +8,7 @@ ServerAdmin webmaster@openstreetmap.org - CustomLog /var/log/apache2/<%= @name %>-access.log combined + CustomLog /var/log/apache2/<%= @name %>-access.log combined_extended ErrorLog /var/log/apache2/<%= @name %>-error.log RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/ @@ -27,8 +27,8 @@ SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key - CustomLog /var/log/apache2/<%= @name %>-secure-access.log combined - ErrorLog /var/log/apache2/<%= @name %>-secure-error.log + CustomLog /var/log/apache2/<%= @name %>-access.log combined_extended + ErrorLog /var/log/apache2/<%= @name %>-error.log DocumentRoot <%= @directory %> @@ -39,9 +39,7 @@ RewriteCond %{SERVER_NAME} !=<%= @name %> RewriteRule ^/(.*)$ https://<%= @name %>/$1 [R=permanent] - RedirectMatch 301 ^/$ /wiki/Main_Page - - #Historical Compatibility Links + # Historical Compatibility Links RedirectMatch 301 ^/index\.php$ /w/index.php RedirectMatch 301 ^/index\.php/(.*)$ /wiki/$1 RedirectMatch 301 ^/skins/(.*)$ /w/skins/$1 @@ -49,7 +47,7 @@ RedirectMatch 301 ^/api\.php$ /w/api.php RedirectMatch 301 ^/opensearch_desc\.php$ /w/opensearch_desc.php - #Support Wikidata redirects based on Wikimedia's redirects: + # Support Wikidata redirects based on Wikimedia's redirects: # https://github.com/wikimedia/puppet/blob/production/modules/mediawiki/files/apache/sites/wikidata-uris.incl RedirectMatch 301 ^/entity/statement/([QqPp]\d+).*$ /wiki/Special:EntityData/$1 RedirectMatch 301 ^/value/(.*)$ /wiki/Special:ListDatatypes @@ -71,8 +69,9 @@ Alias /wiki <%= @directory %>/w/index.php - #Support /pagename -> /wiki/pagename + # Support /pagename -> /wiki/pagename RewriteEngine on + RewriteRule ^/$ /w/index.php?title=Main_Page [L,QSA] RewriteCond %{REQUEST_URI} !^/w/ RewriteCond %{REQUEST_URI} !^/wiki/ RewriteCond %{REQUEST_URI} !^/index\.php @@ -83,9 +82,10 @@ RewriteCond %{REQUEST_URI} !^/entity/ RewriteCond %{REQUEST_URI} !^/value/ RewriteCond %{REQUEST_URI} !^/reference/ - RewriteCond %{REQUEST_URI} !^/prop/ - RewriteCond %{REQUEST_URI} !^/dump/ + RewriteCond %{REQUEST_URI} !^/prop/ + RewriteCond %{REQUEST_URI} !^/dump/ RewriteCond %{REQUEST_URI} !^/server-status + RewriteCond %{REQUEST_URI} !^/server-info RewriteCond %{REQUEST_URI} !^/.well-known/ RewriteCond %{LA-U:REQUEST_FILENAME} !-f RewriteCond %{LA-U:REQUEST_FILENAME} !-d @@ -96,7 +96,7 @@ Require all granted - SetHandler "proxy:unix:/run/php/<%= @name %>.sock|fcgi://127.0.0.1" + SetHandler "proxy:unix:/run/php/php-<%= @name %>-fpm.sock|fcgi://127.0.0.1"