minio/pkg/server/server.go

108 lines
2.4 KiB
Go
Raw Normal View History

2015-01-21 08:16:06 +01:00
/*
* Minimalist Object Storage, (C) 2014 Minio, Inc.
2015-01-21 08:16:06 +01:00
*
* 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 server
import (
"fmt"
"net"
"net/http"
"strings"
"github.com/minio/minio/pkg/server/api"
)
func startAPI(errCh chan error, conf api.Config) {
defer close(errCh)
2015-01-21 09:50:23 +01:00
// Minio server config
httpServer := &http.Server{
Addr: conf.Address,
Handler: getAPIHandler(conf),
2015-01-21 09:50:23 +01:00
MaxHeaderBytes: 1 << 20,
}
host, port, err := net.SplitHostPort(conf.Address)
if err != nil {
errCh <- err
return
}
var hosts []string
switch {
case host != "":
hosts = append(hosts, host)
default:
addrs, err := net.InterfaceAddrs()
if err != nil {
errCh <- err
return
}
for _, addr := range addrs {
if addr.Network() == "ip+net" {
host := strings.Split(addr.String(), "/")[0]
if ip := net.ParseIP(host); ip.To4() != nil {
hosts = append(hosts, host)
}
}
}
}
switch {
default:
for _, host := range hosts {
fmt.Printf("Starting minio server on: http://%s:%s\n", host, port)
}
errCh <- httpServer.ListenAndServe()
case conf.TLS == true:
2015-06-09 05:10:59 +02:00
for _, host := range hosts {
fmt.Printf("Starting minio server on: https://%s:%s\n", host, port)
}
errCh <- httpServer.ListenAndServeTLS(conf.CertFile, conf.KeyFile)
}
}
func startRPC(errCh chan error) {
defer close(errCh)
// Minio server config
httpServer := &http.Server{
Addr: "127.0.0.1:9001", // TODO make this configurable
Handler: getRPCHandler(),
MaxHeaderBytes: 1 << 20,
}
errCh <- httpServer.ListenAndServe()
}
func startTM(errCh chan error) {
defer close(errCh)
}
// StartServices starts basic services for a server
func StartServices(conf api.Config) error {
apiErrCh := make(chan error)
rpcErrCh := make(chan error)
go startAPI(apiErrCh, conf)
go startRPC(rpcErrCh)
select {
case err := <-apiErrCh:
return err
case err := <-rpcErrCh:
return err
}
}