40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
from pydantic import Field
|
|
|
|
from .base import FrigateBaseModel
|
|
|
|
__all__ = ["IPv6Config", "ListenConfig", "NetworkingConfig"]
|
|
|
|
|
|
class IPv6Config(FrigateBaseModel):
|
|
enabled: bool = Field(
|
|
default=False,
|
|
title="Enable IPv6",
|
|
description="Enable IPv6 support for Frigate services (API and UI) where applicable.",
|
|
)
|
|
|
|
|
|
class ListenConfig(FrigateBaseModel):
|
|
internal: int | str = Field(
|
|
default=5000,
|
|
title="Internal port",
|
|
description="Internal listening port for Frigate (default 5000).",
|
|
)
|
|
external: int | str = Field(
|
|
default=8971,
|
|
title="External port",
|
|
description="External listening port for Frigate (default 8971).",
|
|
)
|
|
|
|
|
|
class NetworkingConfig(FrigateBaseModel):
|
|
ipv6: IPv6Config = Field(
|
|
default_factory=IPv6Config,
|
|
title="IPv6 configuration",
|
|
description="IPv6-specific settings for Frigate network services.",
|
|
)
|
|
listen: ListenConfig = Field(
|
|
default_factory=ListenConfig,
|
|
title="Listening ports configuration",
|
|
description="Configuration for internal and external listening ports. This is for advanced users. For the majority of use cases it's recommended to change the ports section of your Docker compose file.",
|
|
)
|