mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
34 lines
1018 B
Go
34 lines
1018 B
Go
// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
package baseserver
|
|
|
|
type Configuration struct {
|
|
Services ServicesConfiguration `json:"services" yaml:"services"`
|
|
}
|
|
|
|
type ServicesConfiguration struct {
|
|
GRPC *ServerConfiguration `json:"grpc,omitempty" yaml:"grpc,omitempty"`
|
|
HTTP *ServerConfiguration `json:"http,omitempty" yaml:"http,omitempty"`
|
|
}
|
|
|
|
type ServerConfiguration struct {
|
|
Address string `json:"address" yaml:"address"`
|
|
TLS *TLSConfiguration `json:"tls,omitempty" yaml:"tls,omitempty"`
|
|
}
|
|
|
|
// GetAddress returns the configured address or an empty string of s is nil
|
|
func (s *ServerConfiguration) GetAddress() string {
|
|
if s == nil {
|
|
return ""
|
|
}
|
|
return s.Address
|
|
}
|
|
|
|
type TLSConfiguration struct {
|
|
CAPath string `json:"caPath" yaml:"caPath"`
|
|
CertPath string `json:"certPath" yaml:"certPath"`
|
|
KeyPath string `json:"keyPath" yaml:"keyPath"`
|
|
}
|