Fix nginx 5000 template (#12210)

This commit is contained in:
Nicolas Mowen 2024-06-29 17:36:24 -06:00 committed by GitHub
parent 18b8e19847
commit 21a777ab45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,3 +1,6 @@
# intended for internal traffic, not protected by auth
listen 5000;
{{ if not .enabled }}
# intended for external traffic, protected by auth
listen 8971;
@ -5,9 +8,6 @@ listen 8971;
# intended for external traffic, protected by auth
listen 8971 ssl;
# intended for internal traffic, not protected by auth
listen 5000;
ssl_certificate /etc/letsencrypt/live/frigate/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/frigate/privkey.pem;