Puma is now on all interfaces and port 3001

This commit is contained in:
Jez Caudle 2023-02-18 13:22:05 +00:00
parent acd14d5b6d
commit c1aa329c61

View File

@ -15,7 +15,7 @@ worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development"
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
#
port ENV.fetch("PORT") { 3000 }
port ENV.fetch("PORT") { 3001 }
# Specifies the `environment` that Puma will run in.
#
@ -41,3 +41,4 @@ pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
# Allow puma to be restarted by `bin/rails restart` command.
plugin :tmp_restart
bind 'tcp://0.0.0.0:3001'