Replies: 2 comments
-
Same question here. |
Beta Was this translation helpful? Give feedback.
0 replies
-
By default, access to API and metrics is granted to localhost only. If you are using the server through Docker without the A solution consists in using the The alternative solution is to enable access to API and metrics through any IP. Setting a user and password is strongly encouraged: authInternalUsers:
- user: any
pass:
ips: []
permissions:
- action: publish
path:
- action: read
path:
- action: playback
path:
- user: myuser
pass: mypass
ips: []
permissions:
- action: api
- action: metrics
- action: pprof |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Question
I took the default config file, changed only api and metrics to yes, and whenever I try to access them through http://localhost:9997/v3/paths/list or localhost:9998/metrics, it prompts for username and password on a browser, or returns 401 with curl.
What am I doing wrong here?
Beta Was this translation helpful? Give feedback.
All reactions