`fly.toml` for private background worker

Hi @emilioziniades

Since the auto stop and stop feature only applies to Machines with services, you shouldn’t see any automatic scaling happening with this setup.

I’d suggest setting the Machine restart policy to always so that your Machine restarts if the host ever reboots. You can read more about restart policies here, but the important bit in your case is:

To set the Machine restart policy to always, run:

fly m update --restart always <your machine id>

1 Like