about summary refs log tree commit homepage
path: root/lib/clogger/format.rb
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-07-28 02:08:00 +0000
committerEric Wong <e@80x24.org>2016-07-28 02:09:01 +0000
commit2ff984bed2cae91c922780809ab2ffc8890ecc27 (patch)
tree949d13367d5f9915827dd99fcdb63355cdcf6dd3 /lib/clogger/format.rb
parent11f72aae6e653cd2ab5e6316097e8b4919eb931e (diff)
downloadclogger-2ff984bed2cae91c922780809ab2ffc8890ecc27.tar.gz
Thanks to Let's Encrypt, the bogomips.org now supports
HTTPS so our homepage can be moved to:

	https://bogomips.org/clogger/

While clogger.bogomips.org is part of the TLS certificate, it is
needless subjectAltName bloat that should not have been created.
This will also make it easier to have multiple homepages in
the future as a Tor hidden service.
Diffstat (limited to 'lib/clogger/format.rb')
-rw-r--r--lib/clogger/format.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/clogger/format.rb b/lib/clogger/format.rb
index 54fe766..6a63ce6 100644
--- a/lib/clogger/format.rb
+++ b/lib/clogger/format.rb
@@ -5,12 +5,12 @@ class Clogger
   # predefined log formats in wide use
   module Format
     # common log format used by Apache:
-    # http://httpd.apache.org/docs/2.2/logs.html
+    # https://httpd.apache.org/docs/2.4/logs.html
     Common = "$remote_addr - $remote_user [$time_local] " \
              '"$request" $status $response_length'
 
     # combined log format used by Apache:
-    # http://httpd.apache.org/docs/2.2/logs.html
+    # https://httpd.apache.org/docs/2.4/logs.html
     Combined = %Q|#{Common} "$http_referer" "$http_user_agent"|
 
     # combined log format used by nginx: