Is it possible to make supabase use `https` instea...
# help
f
Is it possible to make supabase use
https
instead of
http
on docker?
during configuration it automatically uses http, but I'd like to use https instead
Since I already have the certificate on the server
s
Easiest way is probably to use a reverse proxy, like ngrok or frp. Firebase emulators seem to take this approach as well: https://github.com/firebase/firebase-tools/issues/1908
To be clear though, the Node.js CLI is being EOL'd for the Go CLI, so I'd hold off on using the CLI for your projects right now - but you'd probably still need the reverse proxy in the new one (it still uses Docker)
f
Thank you very much 🙂