IP whitelist #239
-
Where are the IP whitelist settings ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You cannot configure it using the UI. If you are using the native HA Addon, IPs are already blocked - only ingress is allowed. So nothing to do here. If you are using the docker image, you can configure it using an env variable if you are using some custom deployment via See the readme for more details. |
Beta Was this translation helpful? Give feedback.
-
Got it. Thabk you so much. |
Beta Was this translation helpful? Give feedback.
You cannot configure it using the UI.
If you are using the native HA Addon, IPs are already blocked - only ingress is allowed. So nothing to do here.
If you are using the docker image, you can configure it using an env variable
HAMH_HTTP_IP_WHITELIST
or with the config file if you use it.IMPORTANT: the env variable does only support a single entry, but you can use an ip range / cidr, too (e.g.
192.168.178.0/24
for all addresses between192.168.178.0
and192.168.178.255
- see this page for more info).if you are using some custom deployment via
npm
you can (in addition to env and config file) also use the command line argument--http-ip-whitelist
, and you can specify it multiple times.Se…