about summary refs log tree commit homepage
path: root/lib/unicorn/util.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/util.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/util.rb')
-rw-r--r--lib/unicorn/util.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/util.rb b/lib/unicorn/util.rb
index 501930c..b826de4 100644
--- a/lib/unicorn/util.rb
+++ b/lib/unicorn/util.rb
@@ -64,7 +64,7 @@ module Unicorn::Util # :nodoc:
           fp.reopen(fp.path, "a")
         else
           # We should not need this workaround, Ruby can be fixed:
-          #    http://bugs.ruby-lang.org/issues/9036
+          #    https://bugs.ruby-lang.org/issues/9036
           # MRI will not call call fclose(3) or freopen(3) here
           # since there's no associated std{in,out,err} FILE * pointer
           # This should atomically use dup3(2) (or dup2(2)) syscall