about summary refs log tree commit homepage
path: root/lib/unicorn/http_server.rb
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2018-10-18 20:55:30 +0000
committerEric Wong <e@80x24.org>2018-10-18 21:00:37 +0000
commit981f561a726bb4307d01e4a09a308edba8d69fe3 (patch)
treec5ceff1a2a5f60232c0b4fb980adf0593bef4dd5 /lib/unicorn/http_server.rb
parent5985dd50a9bd72388dd5ca4886d6dffc083f87d4 (diff)
downloadunicorn-981f561a726bb4307d01e4a09a308edba8d69fe3.tar.gz
Latency from redirects is painful, and HTTPS can protect privacy
in some cases.
Diffstat (limited to 'lib/unicorn/http_server.rb')
-rw-r--r--lib/unicorn/http_server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/http_server.rb b/lib/unicorn/http_server.rb
index 62f6171..5334fa0 100644
--- a/lib/unicorn/http_server.rb
+++ b/lib/unicorn/http_server.rb
@@ -84,7 +84,7 @@ class Unicorn::HttpServer
     # * The master process never closes or reinitializes this once
     # initialized.  Signal handlers in the master process will write to
     # it to wake up the master from IO.select in exactly the same manner
-    # djb describes in http://cr.yp.to/docs/selfpipe.html
+    # djb describes in https://cr.yp.to/docs/selfpipe.html
     #
     # * The workers immediately close the pipe they inherit.  See the
     # Unicorn::Worker class for the pipe workers use.