Running fly launch
:
WARNING The app is not listening on the expected address and will not be reachable by fly-proxy.
You can fix this by configuring your app to listen on the following addresses:
- 0.0.0.0:8080
So I tried adding this to prod.exs:
config :algora, TyndaleWeb.Endpoint,
url: [host: "tyndale-app.fly.dev", port: 8080],
cache_static_manifest: "priv/static/cache_manifest.json"
And there is no change.
Not sure what else I can do to have the app listen on 8080. Any ideas?
toml:
app = 'tyndale-app'
primary_region = 'lax'
kill_signal = 'SIGTERM'
[build]
[env]
PHX_HOST = 'tyndale-app.fly.dev'
PORT = '8080'
[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = false
auto_start_machines = true
min_machines_running = 0
processes = ['app']
[http_service.concurrency]
type = 'connections'
hard_limit = 1000
soft_limit = 1000
[[vm]]
memory = '4gb'
cpu_kind = 'shared'
cpus = 2