mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-04-27 09:07:41 +03:00
Update listen.gotmpl
add ipv6 suport
This commit is contained in:
parent
c2f8de94e8
commit
e1baaefc9f
@ -1,12 +1,16 @@
|
|||||||
# intended for internal traffic, not protected by auth
|
# intended for internal traffic, not protected by auth
|
||||||
listen 5000;
|
listen 5000;
|
||||||
|
listen [::]:5000;
|
||||||
|
|
||||||
{{ if not .enabled }}
|
{{ if not .enabled }}
|
||||||
# intended for external traffic, protected by auth
|
# intended for external traffic, protected by auth
|
||||||
listen 8971;
|
listen 8971;
|
||||||
|
listen [::]:8971;
|
||||||
|
|
||||||
{{ else }}
|
{{ else }}
|
||||||
# intended for external traffic, protected by auth
|
# intended for external traffic, protected by auth
|
||||||
listen 8971 ssl;
|
listen 8971 ssl;
|
||||||
|
listen [::]:8971 ssl;
|
||||||
|
|
||||||
ssl_certificate /etc/letsencrypt/live/frigate/fullchain.pem;
|
ssl_certificate /etc/letsencrypt/live/frigate/fullchain.pem;
|
||||||
ssl_certificate_key /etc/letsencrypt/live/frigate/privkey.pem;
|
ssl_certificate_key /etc/letsencrypt/live/frigate/privkey.pem;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user