fix: Puma server config syntax
This commit is contained in:
parent
d9895890a0
commit
34b4604c7a
1 changed files with 2 additions and 2 deletions
|
@ -13,9 +13,9 @@ preload_app! if ENV['RAILS_ENV'] != 'development'
|
|||
|
||||
rackup DefaultRackup
|
||||
port ENV.fetch("PORT") { 5000 }
|
||||
environment ENV.fetch('RAILS_ENV'{ 'development' }
|
||||
environment ENV.fetch('RAILS_ENV'){ 'development' }
|
||||
|
||||
workers ENV['WEB_CONCURRENCY'].fetch { 1 }
|
||||
workers Integer(ENV['WEB_CONCURRENCY'] || 1)
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue