## What was reported
Issue tursodatabase/libsql-client-ts#39 (closed, 11 comments): When using a local database, e.g. `libsql://YOUR_HOST:3030`, this library would use `https`. This fails because I can't access YOUR_HOST over https. Please allow me to disable https, so that I can connect to a local client over HTTP. I'm using Cloudflare Workers so it seems like I cannot use the file directly.
## Error
```
[0] workerd/jsg/util.c++:276: error: e = kj/compat/tls.c++:74: failed: OpenSSL error; message = error:100000f7:SSL routines:OPENSSL_internal:WRONG_VERSION_NUMBER
[0] stack: 1027b92ab 1027bbb1f 1027bc23b 1027bc968 1027c47f8 103760d3c 103762998 1028b3304 1028b3728 1028b2
## The verified resolution
[honzasp (maintainer)]: The `libsql:` URL scheme always implies TLS (https/wss). For plaintext local dev, pass an explicit `http:` or `ws:` URL (e.g. the service URL for that host and port), or use the `?tls=0` query parameter added in 0.2.0. Also note: `turso dev` only speaks a very old HTTP API the client can't talk to - run `sqld` directly for a compatible local server.