Error: error creating a new machine: failed to launch VM

I’m getting this error while deploying a Remix Indie-stack app to fly:
Error: error creating a new machine: failed to launch VM: Mounts source volume “vol” is in the wrong region (“jnb” != “ewr”)

I selected the same region while deploying(jnb).
Why is there a mismatch between the regions?

Add primary_region to fly.toml like this:

primary_region="jnb"

Your fly.toml should now look something like this:

app="your-app-name"
primary_region="jnb"
kill_signal="SIGINT"
...
1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.