mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-09-27 03:46:15 +08:00

* implement self signed cert and monitor/reload * move go2rtc upstream to separate file * add directory for ACME challenges * make certsync more resilient * add TLS docs * add jwt secret info to docs
5 lines
106 B
Bash
Executable File
5 lines
106 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Wait for PID file to exist.
|
|
while ! test -f /run/nginx.pid; do sleep 1; done |