-
-
Notifications
You must be signed in to change notification settings - Fork 271
Open
Labels
Description
I found the problem:
In my conf file i had : "trusted_ips": "*"
and when i added the ip of the proxy like "trusted_ips": ["172.17.0.6"]
it worked perfectly.
Now my problem is that the ip of the proxy is not static because is inside of a kubernetes pod meaning that each time the pod is reloaded a new static ip is assigned, however i can access the pod using dns "myproxy" like in http://myproxy:5000/endpoint
hence i tried "trusted_ips": ["myproxy"]
but sadly didn't work
Is there any form for use the proxy auth without set ip? or use the dns ?
Originally posted by @oktorok in #289 (comment)