From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, T_FILL_THIS_FORM_SHORT shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 79B861F855 for ; Thu, 28 Jul 2016 01:49:43 +0000 (UTC) From: Eric Wong To: clogger-public@bogomips.org Subject: [PATCH] doc use HTTPS for URLs and move homepage Date: Thu, 28 Jul 2016 01:49:43 +0000 Message-Id: <20160728014943.17444-1-e@80x24.org> List-Id: 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. --- .olddoc.yml | 11 ++++++++--- GNUmakefile | 2 +- LICENSE | 5 ++--- README | 10 +++++----- lib/clogger/format.rb | 4 ++-- 5 files changed, 18 insertions(+), 14 deletions(-) diff --git a/.olddoc.yml b/.olddoc.yml index b38126f..7bc47d0 100644 --- a/.olddoc.yml +++ b/.olddoc.yml @@ -1,7 +1,12 @@ --- -rdoc_url: http://clogger.bogomips.org/ -cgit_url: http://bogomips.org/clogger.git +rdoc_url: https://bogomips.org/clogger/ +cgit_url: https://bogomips.org/clogger.git git_url: git://bogomips.org/clogger.git public_email: clogger-public@bogomips.org private_email: clogger@bogomips.org -ml_url: http://bogomips.org/clogger-public/ +ml_url: +- https://bogomips.org/clogger-public/ +- http://ou63pmih66umazou.onion/clogger-public/ +source_code: +- git clone git://bogomips.org/clogger.git +- git clone https://bogomips.org/clogger.git diff --git a/GNUmakefile b/GNUmakefile index 35a07bc..ab8b4fe 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,5 +1,5 @@ all:: -RSYNC_DEST := clogger.bogomips.org:/srv/clogger/ +RSYNC_DEST := bogomips.org:/srv/bogomips/clogger/ rfpackage := clogger include pkg.mk test-ext: diff --git a/LICENSE b/LICENSE index 5b925e7..8f0c88d 100644 --- a/LICENSE +++ b/LICENSE @@ -3,7 +3,7 @@ revision control for names and email addresses of all of them. You can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) as published by the Free Software -Foundation, version {2.1}[http://www.gnu.org/licenses/lgpl-2.1.txt] or +Foundation, version {2.1}[https://www.gnu.org/licenses/lgpl-2.1.txt] or (at your option) any later version. clogger is distributed in the hope that it will be useful, but WITHOUT @@ -12,5 +12,4 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 +along with this library; if not, see https://www.gnu.org/licenses/ diff --git a/README b/README index a938510..890ba78 100644 --- a/README +++ b/README @@ -92,18 +92,18 @@ that receives a "<<" method: == REQUIREMENTS -* {Ruby}[http://www.ruby-lang.org/], {Rack}[http://rack.github.io/] +* {Ruby}[https://www.ruby-lang.org/], {Rack}[https://rack.github.io/] == DEVELOPMENT The latest development happens in git and is published to the following: - git://bogomips.org/clogger.git - git://repo.or.cz/clogger.git + git clone git://bogomips.org/clogger.git + git clone git://repo.or.cz/clogger.git You may also browse and download snapshot tarballs: -* http://bogomips.org/clogger.git (cgit) +* https://bogomips.org/clogger.git * http://repo.or.cz/w/clogger.git (gitweb) The mailing list (see below) is central for coordination and @@ -119,7 +119,7 @@ requests) go to the public mailing list. Do not send HTML mail or attachments. Do not top post. -Homepage: http://clogger.bogomips.org/ +Homepage: https://bogomips.org/clogger/ == INSTALL 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: -- EW