limited access no login account #22576
Replies: 2 comments 2 replies
-
|
There isn't a built-in port that provides unauthenticated viewer-only access with limited cameras. Port 5000 is the internal unauthenticated port, but it grants full admin-level access to everything. (1) However, you can achieve something similar using proxy authentication with header mapping. If you set up a reverse proxy (like nginx) in front of Frigate, you can:
Here's an example configuration approach: proxy:
header_map:
user: x-forwarded-user
role: x-forwarded-groups
default_role: viewer
auth_secret: NoneYou can also define custom roles that limit access to specific cameras: cameras:
front_door:
# ... camera config
side_yard:
# ... camera config
garage:Custom roles allow you to specify which cameras a role can access. Users assigned a custom role get read-only access limited to those designated cameras - they can only view Live, Review/History, Explore, and Export for the permitted cameras. (1) For your parents' use case, you could:
📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
The issue is that you're connecting to port 8971 (the authenticated port) but with A few things to check:
tls:
enabled: false
auth:
enabled: false
roles:
guest:
- side_gate
- front_door
- drivewayThe proxy configuration looks correct for header mapping. Make sure Frigate is actually receiving the headers by checking the logs after a request. 📚 Sources:
Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
hi, i want to setup my server so that it uses authentication and needs a login to access some cameras. but it is still going to be local only and for the times i need to tell my parents how to check them for something spesific i dont want to have to have them log in. ideally i would like it to still work the same as the port 5000 does now but with read only and limited camera access is there a way to do this?
Beta Was this translation helpful? Give feedback.
All reactions