V4 Client can't parse my custom url

I have a problem connecting to the custom instance because of the way V4 client parses the connection http urls.

My url where the server is located looks like this:
https://www.host.com/cloud/weaviate/

The way v4 parses the http url is currently as follows:

    @property
    def _http_url(self) -> str:
        return f"{self._http_scheme}://{self.http.host}:{self.http.port}"

I can’t connect to the server because it creates this url:
https://www.host.com/cloud/weaviate/:443/v1/meta

How should I solve this issue if I can’t get rid of “/cloud/weaviate/” part of the url?