Files
frigate/frigate/config/tls.py
T

14 lines
299 B
Python
Raw Normal View History

from pydantic import Field
from .base import FrigateBaseModel
__all__ = ["TlsConfig"]
class TlsConfig(FrigateBaseModel):
2026-02-27 09:55:36 -06:00
enabled: bool = Field(
default=True,
title="Enable TLS",
description="Enable TLS for Frigate's web UI and API on the configured TLS port.",
)