14 lines
299 B
Python
14 lines
299 B
Python
from pydantic import Field
|
|
|
|
from .base import FrigateBaseModel
|
|
|
|
__all__ = ["TlsConfig"]
|
|
|
|
|
|
class TlsConfig(FrigateBaseModel):
|
|
enabled: bool = Field(
|
|
default=True,
|
|
title="Enable TLS",
|
|
description="Enable TLS for Frigate's web UI and API on the configured TLS port.",
|
|
)
|