I created a simple Phoenix app 1.7.6 following the docs, this app is not using a DB, this just expose one simple endpoint, so no big computations of anything but when trying to deploy the beam process gets killed due to OOM, tried scaling and also adding 512MB of RAM but nothing…What am i doing wrong?
fly.toml:
# fly.toml app configuration file generated for hubspot-services-api on 2023-07-04T11:19:17+02:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = "hubspot-services-api"
primary_region = "mad"
kill_signal = "SIGTERM"
[env]
PHX_HOST = "hubspot-services-api.fly.dev"
PHX_SERVER = "true"
PORT = "8080"
[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
processes = ["app"]
[http_service.concurrency]
type = "connections"
hard_limit = 1000
soft_limit = 1000
Logs output crash: