I am currently running Airflow within a docker compose, and it is accessible at http://localhost:8081
. However, whenever I access this URL, I am automatically redirected to http://localhost:8081/login/?next=http%3A%2F%2Flocalhost%3A8081%2Fhome
. This redirection is defined as the page to go after login, and it takes me to http://localhost:8081/home
.
I want to change the default redirect URL to a different page after login. Is there a way to achieve this by modifying the configuration files like airflow.cfg
or webserver_config.py
? Any guidance on the specific configuration changes needed to set up a new default redirect URL would be greatly appreciated. Thank you!