Sha256: 94bbaeb64486d748f53ae36ac4c7040fe35bf1272d292342fde12e5da54306a3

Contents?: true

Size: 1.35 KB

Versions: 21

Compression:

Stored size: 1.35 KB

Contents

# ssl-serve.rb
# USAGE: ruby ssl-serve.rb
#
# ssl-serve is a script that serves a local directory over SSL.
# You can use it to test various HTTP behaviors in chef, like chef-client's
# `-j` and `-c` options and remote_file with https connections.
#
require "pp"
require "openssl"
require "webrick"
require "webrick/https"

$ssl = true

CHEF_SPEC_DATA = File.expand_path("../../data", __FILE__)
cert_text = File.read(File.expand_path("ssl/chef-rspec.cert", CHEF_SPEC_DATA))
cert = OpenSSL::X509::Certificate.new(cert_text)
key_text = File.read(File.expand_path("ssl/chef-rspec.key", CHEF_SPEC_DATA))
key = OpenSSL::PKey::RSA.new(key_text)

server_opts = {}
if $ssl
  server_opts.merge!( { SSLEnable: true,
                        SSLVerifyClient: OpenSSL::SSL::VERIFY_NONE,
                        SSLCertificate: cert,
                        SSLPrivateKey: key })
end

# 5 == debug, 3 == warning
LOGGER = WEBrick::Log.new(STDOUT, 5)
DEFAULT_OPTIONS = {
  server: "webrick",
  Port: 9000,
  Host: "localhost",
  environment: :none,
  Logger: LOGGER,
  DocumentRoot: File.expand_path("#{Dir.tmpdir}/chef-118-sampledata")
  #:AccessLog => [] # Remove this option to enable the access log when debugging.
}.freeze

webrick_opts = DEFAULT_OPTIONS.merge(server_opts)
pp webrick_opts: webrick_opts

server = WEBrick::HTTPServer.new(webrick_opts)
trap("INT") { server.shutdown }

server.start

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
chef-14.14.29 spec/scripts/ssl-serve.rb
chef-14.14.29-universal-mingw32 spec/scripts/ssl-serve.rb
chef-14.14.25-universal-mingw32 spec/scripts/ssl-serve.rb
chef-14.14.25 spec/scripts/ssl-serve.rb
chef-14.14.14-universal-mingw32 spec/scripts/ssl-serve.rb
chef-14.14.14 spec/scripts/ssl-serve.rb
chef-14.13.11 spec/scripts/ssl-serve.rb
chef-14.12.9 spec/scripts/ssl-serve.rb
chef-14.12.3 spec/scripts/ssl-serve.rb
chef-14.11.21 spec/scripts/ssl-serve.rb
chef-14.10.9 spec/scripts/ssl-serve.rb
chef-14.9.13 spec/scripts/ssl-serve.rb
chef-14.8.12 spec/scripts/ssl-serve.rb
chef-14.7.17 spec/scripts/ssl-serve.rb
chef-14.6.47 spec/scripts/ssl-serve.rb
chef-14.5.33 spec/scripts/ssl-serve.rb
chef-14.5.27 spec/scripts/ssl-serve.rb
chef-14.5.27-universal-mingw32 spec/scripts/ssl-serve.rb
chef-14.4.56-universal-mingw32 spec/scripts/ssl-serve.rb
chef-14.4.56 spec/scripts/ssl-serve.rb