Add HA guide for self-hosted Enterprise (#812)

* render mermaid disgrams

* wip: add ha docs

* improve high availability guide

* fix review

* remove nav links and references

* remove dead server.authSecret references

* fix Redis troubleshooting command using non-existent env var

* correct startup-log order
This commit is contained in:
Bethuel Mmbaga
2026-06-25 15:53:25 +03:00
committed by GitHub
parent e21d6da29d
commit ffb72cfa34
5 changed files with 892 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ import clsx from 'clsx'
import { create } from 'zustand'
import { Tag } from '@/components/Tag'
import { Mermaid } from '@/components/Mermaid'
const languageNames = {
js: 'JavaScript',
@@ -290,6 +291,10 @@ export function Code({ children, ...props }) {
export function Pre({ children, ...props }) {
let isGrouped = useContext(CodeGroupContext)
if (props.language === 'mermaid') {
return <Mermaid chart={props.code} />
}
if (isGrouped) {
return children
}