mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 19:50:05 +01:00
587459df15
Signed-off-by: clouderati <35942204+clouderati@users.noreply.github.com>
92 lines
2.3 KiB
Go
92 lines
2.3 KiB
Go
// Copyright Project Harbor 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 main
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"flag"
|
|
"net/http"
|
|
|
|
"github.com/goharbor/harbor/src/common/utils/log"
|
|
"github.com/goharbor/harbor/src/registryctl/config"
|
|
"github.com/goharbor/harbor/src/registryctl/handlers"
|
|
)
|
|
|
|
// RegistryCtl for registry controller
|
|
type RegistryCtl struct {
|
|
ServerConf config.Configuration
|
|
Handler http.Handler
|
|
}
|
|
|
|
// Start the registry controller
|
|
func (s *RegistryCtl) Start() {
|
|
regCtl := &http.Server{
|
|
Addr: ":" + s.ServerConf.Port,
|
|
Handler: s.Handler,
|
|
}
|
|
|
|
if s.ServerConf.Protocol == "HTTPS" {
|
|
tlsCfg := &tls.Config{
|
|
MinVersion: tls.VersionTLS12,
|
|
CurvePreferences: []tls.CurveID{tls.CurveP521, tls.CurveP384, tls.CurveP256},
|
|
PreferServerCipherSuites: true,
|
|
CipherSuites: []uint16{
|
|
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
|
|
tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
|
|
tls.TLS_RSA_WITH_AES_256_GCM_SHA384,
|
|
tls.TLS_RSA_WITH_AES_256_CBC_SHA,
|
|
},
|
|
}
|
|
|
|
regCtl.TLSConfig = tlsCfg
|
|
regCtl.TLSNextProto = make(map[string]func(*http.Server, *tls.Conn, http.Handler), 0)
|
|
}
|
|
|
|
var err error
|
|
if s.ServerConf.Protocol == "HTTPS" {
|
|
err = regCtl.ListenAndServeTLS(s.ServerConf.HTTPSConfig.Cert, s.ServerConf.HTTPSConfig.Key)
|
|
} else {
|
|
err = regCtl.ListenAndServe()
|
|
}
|
|
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
func main() {
|
|
|
|
configPath := flag.String("c", "", "Specify the yaml config file path")
|
|
flag.Parse()
|
|
|
|
if configPath == nil || len(*configPath) == 0 {
|
|
flag.Usage()
|
|
log.Fatal("Config file should be specified")
|
|
}
|
|
|
|
if err := config.DefaultConfig.Load(*configPath, true); err != nil {
|
|
log.Fatalf("Failed to load configurations with error: %s\n", err)
|
|
}
|
|
|
|
regCtl := &RegistryCtl{
|
|
ServerConf: *config.DefaultConfig,
|
|
Handler: handlers.NewHandlerChain(),
|
|
}
|
|
|
|
regCtl.Start()
|
|
}
|