I’m currently running my app in 2 regions: LHR and FRA, each one with two performance-2x machines, my fly.toml looks like this:
app = '***'
primary_region = 'fra'
[build]
[env]
PORT = '8081'
HOST = 'https://***.com'
NODE_OPTIONS = '--max-http-header-size=32768'
[http_service]
internal_port = 8081
force_https = true
auto_stop_machines = "off"
auto_start_machines = true
min_machines_running = 1
processes = ['app']
[[vm]]
size = 'performance-2x'
cpu_kind = 'performance'
memory_mb = 4096
How can I set up my toml file to specify a total of 4 machines?: One performance-1x machine and one performance-2x machine, on each region.
Any insight is appreciated!