tursodatabase / libsql

libSQL is a fork of SQLite that is both Open Source, and Open Contributions.

Home Page:https://turso.tech/libsql

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support Remote Connection Behind HTTP Proxy?

zicklag opened this issue · comments

Hey there! All of my internet access on my development machine must go through an http proxy, which is configured for most applications by setting the http_proxy and https_proxy environment variables.

I noticed that remote connections using libsql are just hanging which is usually a sign that it's not respecting the proxy, since outbound on 80 and 443 is blocked at the router.

libsql is using normal HTTP requests right? I've opened pull requests to add proxy support in a couple projects before. It's always a little different depending on which HTTP client you're using.

Do you have any pointers on where the http requests are setup and whether or not you'd be open to a fix?