From 2ca6808f7d91b1dd44cd5b6eb31e9b272d865891 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 9 May 2019 22:08:55 +0000 Subject: doc: favor File.read over IO.read to ease review IO.read may invoke subprocesses, which can set off security warnings. --- Documentation/yahns_config.pod | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Documentation') 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, -- cgit v1.2.3-24-ge0c7