mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-08-02 17:12:16 +03:00
21 lines
418 B
TypeScript
21 lines
418 B
TypeScript
import type { SectionConfigOverrides } from "./types";
|
|||
|
|
|
||
|
|
const tls: SectionConfigOverrides = {
|
||
|
|
base: {
|
||
|
|
sectionDocs: "/configuration/tls",
|
||
|
|
restartRequired: ["enabled"],
|
||
|
|
fieldOrder: ["enabled", "cert", "key"],
|
||
|
|
advancedFields: [],
|
||
|
|
uiSchema: {
|
||
|
|
cert: {
|
||
|
|
"ui:options": { size: "md" },
|
||
|
|
},
|
||
|
|
key: {
|
||
|
|
"ui:options": { size: "md" },
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default tls;
|