Is it possible to update a nested keyword list in elixir? For example i am trying to make the following work
Keyword.put(conn.private.phoenix_endpoint.config(:url), :host, conn.host)
But somehow, the updated host is not reflected in the conn
variable.