Serve Let's Encrypt certificates for stratum TLS on public domains

This commit is contained in:
2026-08-01 06:31:15 +03:00
parent 703ca1b559
commit f118c153a0
11 changed files with 369 additions and 95 deletions
+7 -3
View File
@@ -1,7 +1,11 @@
import { VersionGraph } from '@start9labs/start-sdk'
import { current } from './current'
import { v0_2_0 } from './v0_2_0'
import { v0_2_1 } from './v0_2_1'
// The current version must be listed first; `other` carries the rest of the
// graph so StartOS can find a migration path from whatever version an existing
// install is currently on.
export const versionGraph = VersionGraph.of({
current,
other: [],
current: v0_2_1,
other: [v0_2_0],
})