about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/rainbows.rb2
-rw-r--r--lib/rainbows/configurator.rb2
-rw-r--r--lib/rainbows/epoll.rb2
-rw-r--r--lib/rainbows/reverse_proxy.rb2
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/rainbows.rb b/lib/rainbows.rb
index 3c12e79..acfe911 100644
--- a/lib/rainbows.rb
+++ b/lib/rainbows.rb
@@ -4,7 +4,7 @@ require 'unicorn'
 # the value passed to TCP_DEFER_ACCEPT actually matters in Linux 2.6.32+
 Unicorn::SocketHelper::DEFAULTS[:tcp_defer_accept] = 60
 
-# See http://rainbows.bogomips.org/ for documentation
+# See https://bogomips.org/rainbows/ for documentation
 module Rainbows
   # :stopdoc:
   O = {}
diff --git a/lib/rainbows/configurator.rb b/lib/rainbows/configurator.rb
index 73820a1..10cb60d 100644
--- a/lib/rainbows/configurator.rb
+++ b/lib/rainbows/configurator.rb
@@ -1,7 +1,7 @@
 # -*- encoding: binary -*-
 
 # This module adds \Rainbows! to the
-# {Unicorn::Configurator}[http://unicorn.bogomips.org/Unicorn/Configurator.html]
+# {Unicorn::Configurator}[https://bogomips.org/unicorn/Unicorn/Configurator.html]
 # \Rainbows!-specific configuration options must be inside a the Rainbows!
 # block, otherwise Unicorn::Configurator directives may be used anywhere
 # in the file.
diff --git a/lib/rainbows/epoll.rb b/lib/rainbows/epoll.rb
index 4fbf9ba..45c4d08 100644
--- a/lib/rainbows/epoll.rb
+++ b/lib/rainbows/epoll.rb
@@ -3,7 +3,7 @@ require 'sleepy_penguin'
 require 'sendfile'
 
 # Edge-triggered epoll concurrency model using
-# {sleepy_penguin}[http://bogomips.org/sleepy_penguin/] for epoll.
+# {sleepy_penguin}[https://bogomips.org/sleepy_penguin/] for epoll.
 #
 # Unlike more portable options like Coolio and EventMachine, this
 # is Linux-only, but uses edge-triggering instead of level-triggering,
diff --git a/lib/rainbows/reverse_proxy.rb b/lib/rainbows/reverse_proxy.rb
index 16a6f65..a4d8390 100644
--- a/lib/rainbows/reverse_proxy.rb
+++ b/lib/rainbows/reverse_proxy.rb
@@ -3,7 +3,7 @@
 require 'socket'
 require 'thread'
 require 'uri'
-require 'kcar' # http://bogomips.org/kcar/ -- gem install kcar
+require 'kcar' # https://bogomips.org/kcar/ -- gem install kcar
 
 # This is lightly tested and has an unstable configuration interface.
 # ***** Do not rely on anything under the ReverseProxy namespace! *****