Sha256: e78b1ea6d8158d098593d8d0ef8e2cc6e50d10979d45fef1c02106cf8dbc682c
Contents?: true
Size: 1.9 KB
Versions: 1
Compression:
Stored size: 1.9 KB
Contents
# frozen_string_literal: true # Released under the MIT License. # Copyright, 2020-2023, by Samuel Williams. require_relative '../controller/redirect' require_relative 'paths' require 'samovar' module Falcon module Command class Redirect < Samovar::Command self.description = "Redirect from insecure HTTP to secure HTTP." # The command line options. # @attribute [Samovar::Options] options do option '--bind <address>', "Bind to the given hostname/address", default: "http://[::]:80" option '--redirect <address>', "Redirect using this address as a template.", default: "https://[::]:443" option '-t/--timeout <duration>', "Specify the maximum time to wait for non-blocking operations.", type: Float, default: nil end # One or more paths to the configuration files. # @name paths # @attribute [Array(String)] many :paths include Paths # Prepare a new controller for the command. def controller Controller::Redirect.new(self) end # The container class to use. def container_class Async::Container.best_container_class end # Options for the container. # See {Controller::Serve#setup}. def container_options {} end # Prepare the environment and run the controller. def call Console.logger.info(self) do |buffer| buffer.puts "Falcon Redirect v#{VERSION} taking flight!" buffer.puts "- Binding to: #{@options[:bind]}" buffer.puts "- To terminate: Ctrl-C or kill #{Process.pid}" buffer.puts "- To reload: kill -HUP #{Process.pid}" end self.controller.run end # The endpoint to bind to. def endpoint(**options) Async::HTTP::Endpoint.parse(@options[:bind], timeout: @options[:timeout], **options) end # The template endpoint to redirect to. def redirect_endpoint(**options) Async::HTTP::Endpoint.parse(@options[:redirect], **options) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
falcon-0.43.0 | lib/falcon/command/redirect.rb |