yahns Ruby server user/dev discussion
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [ANN] yahns 1.18.0 -_-
@ 2021-10-09  8:37  5% Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2021-10-09  8:37 UTC (permalink / raw)
  To: yahns-public

Some minor updates and fixes, mainly to workaround for a
(now-fixed upstream) Linux kernel bug.  I doubt anybody
uses this, yet, or ever will at this point...

Changes:

    8 changes since 1.17.0 (2019-04-22):

          worker: workaround old F_SETPIPE_SZ bug
          doc: favor File.read over IO.read to ease review
          proxy_pass: document as a public API
          doc: include Yahns/ directory on website
          extras/try_gzip_static: set "Vary: Accept-Encoding" on gzip
          do not sleep if signals are pending
          server: workaround Linux v5.5..v5.13 epoll bug
          gemspec: allow unicorn 6.x

* homepage: https://yhbt.net/yahns/
* git clone https://yhbt.net/yahns.git

*zzzzzzzz*

^ permalink raw reply	[relevance 5%]

* [PATCH] doc: favor File.read over IO.read to ease review
@ 2019-05-10  2:44  7% Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2019-05-10  2:44 UTC (permalink / raw)
  To: yahns-public

IO.read may invoke subprocesses, which can set off
security warnings.
---
 Documentation/yahns_config.pod | 6 +++---
 test/helper.rb                 | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Documentation/yahns_config.pod b/Documentation/yahns_config.pod
index 01b1bf9..737e085 100644
--- a/Documentation/yahns_config.pod
+++ b/Documentation/yahns_config.pod
@@ -436,15 +436,15 @@ An example which seems to work is:
   require 'openssl'
   ssl_ctx = OpenSSL::SSL::SSLContext.new
   ssl_ctx.cert = OpenSSL::X509::Certificate.new(
-    IO.read('/etc/ssl/certs/example.crt')
+    File.read('/etc/ssl/certs/example.crt')
   )
   ssl_ctx.extra_chain_cert = [
     OpenSSL::X509::Certificate.new(
-      IO.read('/etc/ssl/certs/chain.crt')
+      File.read('/etc/ssl/certs/chain.crt')
     )
   ]
   ssl_ctx.key = OpenSSL::PKey::RSA.new(
-    IO.read('/etc/ssl/private/example.key')
+    File.read('/etc/ssl/private/example.key')
   )
 
   # use defaults provided by Ruby on top of OpenSSL,
diff --git a/test/helper.rb b/test/helper.rb
index 550a0f1..f9370a4 100644
--- a/test/helper.rb
+++ b/test/helper.rb
@@ -158,7 +158,7 @@ def skip_skb_mem
   [ [ '/proc/sys/net/ipv4/tcp_rmem', "4096	87380	6291456\n" ],
     [ '/proc/sys/net/ipv4/tcp_wmem', "4096	16384	4194304\n" ]
   ].each do |file, expect|
-    val = IO.read(file)
+    val = File.read(file)
     val == expect or skip "#{file} had: #{val}expected: #{expect}"
   end
 end
-- 
EW


^ permalink raw reply related	[relevance 7%]

Results 1-2 of 2 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2019-05-10  2:44  7% [PATCH] doc: favor File.read over IO.read to ease review Eric Wong
2021-10-09  8:37  5% [ANN] yahns 1.18.0 -_- Eric Wong

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

	https://yhbt.net/yahns.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).