set default port to 5000 for production

This commit is contained in:
Willem van den Ende
2026-03-18 13:55:49 +00:00
parent 9e6252e1e7
commit a5dee5c21e
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ if config_env() == :prod do
"""
host = System.get_env("PHX_HOST") || "example.com"
port = String.to_integer(System.get_env("PORT") || "4000")
port = String.to_integer(System.get_env("PORT") || "5000")
config :firehose, :dns_cluster_query, System.get_env("DNS_CLUSTER_QUERY")