From 8f16fd709da25abda116e09015409d642932b85e Mon Sep 17 00:00:00 2001 From: Logan Fick Date: Sun, 27 May 2018 16:23:51 -0400 Subject: [PATCH] Changed location that Puma binds to. --- config/puma.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/puma.rb b/config/puma.rb index 173f49d..ce9e7e7 100644 --- a/config/puma.rb +++ b/config/puma.rb @@ -8,7 +8,7 @@ shared_dir = "#{app_dir}/shared" rails_env = ENV['RAILS_ENV'] || "production" environment rails_env -bind "unix://#{shared_dir}/sockets/puma.sock" +bind "localhost:8080" stdout_redirect "#{shared_dir}/log/puma.stdout.log", "#{shared_dir}/log/puma.stderr.log", true