From fb7d68b307c7c016305952567e7c5dfb6cefb3fe Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Wed, 3 May 2023 10:51:43 -0700 Subject: [PATCH] default to port 80 --- config/puma.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/puma.rb b/config/puma.rb index 04bf1187..6c7e5423 100644 --- a/config/puma.rb +++ b/config/puma.rb @@ -11,7 +11,7 @@ threads threads_count, threads_count # Specifies the `port` that Puma will listen on to receive requests; default is 3000. # -port ENV.fetch("PORT") { 3000 } +port ENV.fetch("PORT") { 80 } # Specifies the `environment` that Puma will run in. #