added basic servers implementation

This commit is contained in:
2025-03-16 19:23:02 +02:00
parent d1f1d4e7c9
commit f57888cb8e
8 changed files with 280 additions and 552 deletions

View File

@@ -49,13 +49,15 @@ type FileBrowserConfig struct {
}
type DockerInstanceManagerConfig struct {
GamesDomain string `yaml:"games_domain"`
BrowsersDomain string `yaml:"browsers_domain"`
CertificateResolver string `yaml:"certificate_resolver"`
FileBrowser FileBrowserConfig `yaml:"file_browser"`
}
type InstanceManagerConfig struct {
Type InstanceManagerType
Type InstanceManagerType `yaml:"type"`
Docker DockerInstanceManagerConfig `yaml:"docker"`
}
type ServersDatabaseConfig struct {