Support custom domains. Fix host-record/address resolution.

This commit is contained in:
2026-07-13 00:26:13 +00:00
parent 65c7e56b0a
commit 1e7d93256e
12 changed files with 336 additions and 132 deletions

View File

@@ -0,0 +1,10 @@
import { ErrorBoundary } from '../../../components';
import { DdnsSubsystem } from '../../../components/advanced';
export function DdnsPage() {
return (
<ErrorBoundary>
<DdnsSubsystem />
</ErrorBoundary>
);
}

View File

@@ -4,3 +4,4 @@ export { NftablesPage } from './NftablesPage';
export { WireguardPage } from './WireguardPage';
export { CrowdsecPage } from './CrowdsecPage';
export { AutheliaAdvancedPage } from './AutheliaPage';
export { DdnsPage } from './DdnsPage';