]> git.openstreetmap.org Git - chef.git/commitdiff
mediawiki: add apache request duration logging
authorGrant Slater <github@firefishy.com>
Sun, 10 Mar 2024 13:07:01 +0000 (13:07 +0000)
committerGrant Slater <github@firefishy.com>
Sun, 10 Mar 2024 13:07:01 +0000 (13:07 +0000)
cookbooks/mediawiki/templates/default/apache.erb

index 411834eadb7f793d591b81c8252a733b2b12eeb3..31f521fbd87a4e34378fd75d048de440af464ffb 100644 (file)
@@ -8,7 +8,8 @@
 
   ServerAdmin webmaster@openstreetmap.org
 
-  CustomLog /var/log/apache2/<%= @name %>-access.log combined
+  LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\" %Dus" combined_with_time
+  CustomLog /var/log/apache2/<%= @name %>-access.log combined_with_time
   ErrorLog /var/log/apache2/<%= @name %>-error.log
 
   RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
@@ -27,7 +28,8 @@
   SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
   SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
 
-  CustomLog /var/log/apache2/<%= @name %>-secure-access.log combined
+  LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\" %Dus" combined_with_time
+  CustomLog /var/log/apache2/<%= @name %>-secure-access.log combined_with_time
   ErrorLog /var/log/apache2/<%= @name %>-secure-error.log
 
   DocumentRoot <%= @directory %>