-
Notifications
You must be signed in to change notification settings - Fork 21
UniFi Protect: how to fix RTSPS Feeds from UniFi Protect
Alexander Wolf edited this page Feb 24, 2023
·
1 revision
After creating a new certificate, RTSPS Feeds from UniFi Protect stop working.
@bfayers found this solution:
Those feeds are served by the evostreams
process which runs under the unifi-protect
user. 644
is the minimum for functionality.
Provide read permissions to everyone for the update key files: Either run chmod 0644
on both files or change line in script
chmod 600 ${UNIFIOS_CERT_PATH}/unifi-core.key ${UNIFIOS_CERT_PATH}/unifi-core-direct.key
to
chmod 644 ${UNIFIOS_CERT_PATH}/unifi-core.key ${UNIFIOS_CERT_PATH}/unifi-core-direct.key