Sha256: c945da8ef7bd707372bf77d3571b373969d6f629a2597311fa921e591282703f

Contents?: true

Size: 1.96 KB

Versions: 2

Compression:

Stored size: 1.96 KB

Contents

# This is the main configuration file for your RubyGems mirror. Here you can
# change settings such as the location to store Gem files in and what source
# and Gems you'd like to mirror at start.
Gemirro.configuration.configure do
  # Define sinatra environment
  environment :production

  # The directory to store indexing information as well as the Gem files in.
  destination File.expand_path('../public', __FILE__)

  # If you're in development mode your probably want to switch to a debug
  # logging level.
  logger.level = Logger::INFO

  # If you want to run your server on a specific host and port, you must
  # change the following parameters (server_host and server_port).
  #
  # server.host 'localhost'
  # server.port '2000'

  # If you don't want the server to run daemonized, uncomment the following
  # server.daemonize false
  server.access_log File.expand_path('../logs/access.log', __FILE__)
  server.error_log File.expand_path('../logs/error.log', __FILE__)

  # If you don't want to generate indexes after each fetched gem.
  #
  # update_on_fetch false

  # If you don't want to fetch gem if file does not exists when
  # running gemirro server.
  #
  # fetch_gem false

  # If upstream repository requires authentication
  # upstream_user 'username'
  # upstream_password 'password'
  # upstream_domain 'https://internal.com'

  # Enforce the the base_auth
  # basic_auth true

  # Set the proxy server if behind the firewall
  # proxy 'http://proxy.internal.com:80'

  # Root CA cert location if additional root ca is added
  # This will overwrite verfiy_mode. use PEER as default
  # rootca '/etc/root_ca.crt'

  # Not verify certificate in case the proxy has self-signed cert
  # verify_mode false

  # You must define a source which where gems will be downloaded.
  # All gem in the block will be downloaded with the update command.
  # Other gems will be downloaded with the server.
  define_source 'rubygems', 'https://rubygems.org' do
    gem 'rack', '>= 1.0.0'
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gemirro-1.5.0 template/config.rb
gemirro-1.4.0 template/config.rb