[SOLVED] Unable to login after an upgrade to 0.7.32

Hi, I upgraded to Firezone 0.7.32 and after an upgrade the login does not work and when I check the logs, I see below snippet:

 ** (EXIT) no process: the process is not alive or there's no process currently associated with the given name, possibly because its application isn't started
    (elixir 1.14.3) lib/gen_server.ex:1027: GenServer.call/3
    (fz_http 0.7.32) lib/fz_http/vpn_session_scheduler.ex:24: FzHttp.VpnSessionScheduler.handle_info/2
    (stdlib 4.2) gen_server.erl:1123: :gen_server.try_dispatch/4
    (stdlib 4.2) gen_server.erl:1200: :gen_server.handle_msg/6
    (stdlib 4.2) proc_lib.erl:240: :proc_lib.init_p_do_apply/

I had to change the contents of the docker-compose.yaml file to below:

        ${EXTERNAL_URL} {
          log
          reverse_proxy * 172.250.0.100:${PHOENIX_PORT:-13000}
          ${TLS_OPTS:-}

The older one had https:// instead of the ${EXTERNAL_URL} and in .env file remove any trailing / in the value of variable EXTERNAL_URL

The above was required for the Login page to show up and properly redirect.

Another issue was someone changed the ownership of the $HOME causing the VPN connectivity issues, even though VPN was connection, the user reported that it was not working, changing this back to the owner of this directory fixed. (chown -T admin:admin . on Debian)