Reverse Proxy
Last updated
Last updated
Running a reverse proxy in front of ws4sqlite is almost mandatory if you want to expose it on the internet. More than that, there are a number of reverse proxies that allow you to protect a http connection with https, using a free certificate provided for example by or similar.
Read more .
We'll show here how to integrate with two popular solutions, and .
To access ws4sqlite from https://sqlite.test.com
:
Expose ports 80 and 443 of the server to which the DNS points;
Run ws4sqlite. Leave the port as 12321;
Launch caddy:
sudo caddy reverse-proxy --from sqlite.test.com --to localhost:12321
You'll need to launch caddy with root/admin privileges, as it must access privileged ports.
NGINX is quite complex to configure, and it's beyond the scope of this document. Usually, we make use of Docker image, paired with ws4sqlite's own docker image. The relevant config is in nginx/site-confs/default
: