I'm trying to add authentication to questdb web ui, as I don't want it to be exposed to the public internet. But it seems there are no options out of the box?
Asked
Active
Viewed 350 times
1 Answers
1
There is no authentication available on the web console yet out of the box, so the most common options are to:
- set up an auth proxy in front of the instance using nginx or similar
- disable the web console and REST API via server configuration
- set the instance to read-only (
http.security.readonly
) via HTTP

Brian Smith
- 1,222
- 7
- 17
-
Could you explain how to setup an auth proxy with apache server (Ubuntu) ? – Jicao Jan 04 '22 at 15:26