How can I configure astro/airflow to use a custom IP, not localhost?

In your project directory, you should be able to run astro airflow init to scaffold out a project, if you haven’t yet. Once you have those files created, you can edit the config file at ./.astro/config.yaml and add:

webserver:
  port: 8081

to switch the webserver port to 8081, for instance.

2 Likes