Sha256: 49366f242cf505170a90133f1258dab1a0e9e486940cd9f897e565fe96bfdaab

Contents?: true

Size: 762 Bytes

Versions: 23

Compression:

Stored size: 762 Bytes

Contents

# Puma is a fast, concurrent web server for Ruby & Rack
#
# Learn more at: https://puma.io
#
port ENV.fetch("BRIDGETOWN_PORT") { 4000 }

# You can adjust the number of workers (separate processes) and threads
# (per process) based on your production system
#
if ENV["BRIDGETOWN_ENV"] == "production"
  workers ENV.fetch("BRIDGETOWN_CONCURRENCY") { 4 }
end

max_threads_count = ENV.fetch("BRIDGETOWN_MAX_THREADS") { 5 }
min_threads_count = ENV.fetch("BRIDGETOWN_MIN_THREADS") { max_threads_count }
threads min_threads_count, max_threads_count

# Preload the application for maximum performance
#
preload_app!

# Use the Bridgetown logger format
#
require "bridgetown-core/rack/logger"
log_formatter do |msg|
  Bridgetown::Rack::Logger.message_with_prefix msg
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
bridgetown-core-1.2.0.beta4 lib/site_template/config/puma.rb
bridgetown-core-1.2.0.beta3 lib/site_template/config/puma.rb
bridgetown-core-1.2.0.beta2 lib/site_template/config/puma.rb
bridgetown-core-1.2.0.beta1 lib/site_template/config/puma.rb
bridgetown-core-1.1.0 lib/site_template/config/puma.rb
bridgetown-core-1.1.0.beta3 lib/site_template/config/puma.rb
bridgetown-core-1.1.0.beta2 lib/site_template/config/puma.rb
bridgetown-core-1.1.0.beta1 lib/site_template/config/puma.rb
bridgetown-core-1.0.0 lib/site_template/config/puma.rb
bridgetown-core-1.0.0.beta3 lib/site_template/config/puma.rb
bridgetown-core-1.0.0.beta2 lib/site_template/config/puma.rb
bridgetown-core-1.0.0.beta1 lib/site_template/config/puma.rb
bridgetown-core-1.0.0.alpha11 lib/site_template/config/puma.rb
bridgetown-core-1.0.0.alpha10 lib/site_template/config/puma.rb
bridgetown-core-1.0.0.alpha9 lib/site_template/config/puma.rb
bridgetown-core-1.0.0.alpha8 lib/site_template/config/puma.rb
bridgetown-core-1.0.0.alpha7 lib/site_template/config/puma.rb
bridgetown-core-1.0.0.alpha6 lib/site_template/config/puma.rb
bridgetown-core-1.0.0.alpha5 lib/site_template/config/puma.rb
bridgetown-core-1.0.0.alpha4 lib/site_template/config/puma.rb