2024-02-10 15:17:34 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
type ServerConfig struct {
|
|
|
|
DatabaseAccount string
|
|
|
|
DatabaseDomain string
|
|
|
|
DatabaseEndpoint string
|
2024-02-21 21:40:54 +00:00
|
|
|
AccountKey string
|
2024-02-13 23:47:51 +00:00
|
|
|
|
2024-11-14 16:42:17 +00:00
|
|
|
ExplorerPath string
|
|
|
|
Port int
|
|
|
|
Host string
|
|
|
|
TLS_CertificatePath string
|
|
|
|
TLS_CertificateKey string
|
|
|
|
InitialDataFilePath string
|
|
|
|
PersistDataFilePath string
|
|
|
|
DisableAuth bool
|
|
|
|
DisableTls bool
|
|
|
|
Debug bool
|
|
|
|
ExplorerBaseUrlLocation string
|
2024-02-10 15:17:34 +00:00
|
|
|
}
|