clogger RubyGem user+dev discussion/patches/pulls/bugs/help
 help / color / mirror / code / Atom feed
* [PATCH] doc use HTTPS for URLs and move homepage
@ 2016-07-28  1:49 Eric Wong
  2016-07-28  2:08 ` [PATCH v2] " Eric Wong
  0 siblings, 1 reply; 2+ messages in thread
From: Eric Wong @ 2016-07-28  1:49 UTC (permalink / raw)
  To: clogger-public

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


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH v2] doc use HTTPS for URLs and move homepage
  2016-07-28  1:49 [PATCH] doc use HTTPS for URLs and move homepage Eric Wong
@ 2016-07-28  2:08 ` Eric Wong
  0 siblings, 0 replies; 2+ messages in thread
From: Eric Wong @ 2016-07-28  2:08 UTC (permalink / raw)
  To: clogger-public

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.
---
 v2: sneak in the NNTP URL, too

 .olddoc.yml           | 12 +++++++++---
 GNUmakefile           |  2 +-
 LICENSE               |  5 ++---
 README                | 10 +++++-----
 lib/clogger/format.rb |  4 ++--
 5 files changed, 19 insertions(+), 14 deletions(-)

diff --git a/.olddoc.yml b/.olddoc.yml
index b38126f..ece1573 100644
--- a/.olddoc.yml
+++ b/.olddoc.yml
@@ -1,7 +1,13 @@
 ---
-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/
+- nntp://news.public-inbox.org/inbox.comp.lang.ruby.clogger
+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

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-07-28  2:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-28  1:49 [PATCH] doc use HTTPS for URLs and move homepage Eric Wong
2016-07-28  2:08 ` [PATCH v2] " Eric Wong

Code repositories for project(s) associated with this public inbox

	https://yhbt.net/clogger.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).