miniflux-v2/daemon/server.go

95 lines
2.7 KiB
Go
Raw Normal View History

// Copyright 2018 Frédéric Guillot. All rights reserved.
2017-11-20 06:10:04 +01:00
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-25 06:51:50 +02:00
package daemon // import "miniflux.app/daemon"
2017-11-20 06:10:04 +01:00
import (
2017-11-22 20:16:48 +01:00
"crypto/tls"
2017-11-20 06:10:04 +01:00
"net/http"
"time"
2017-11-22 04:37:47 +01:00
2018-08-25 06:51:50 +02:00
"miniflux.app/config"
"miniflux.app/logger"
"miniflux.app/reader/feed"
"miniflux.app/scheduler"
"miniflux.app/storage"
2017-11-20 06:10:04 +01:00
"golang.org/x/crypto/acme/autocert"
)
2017-11-22 20:16:48 +01:00
func newServer(cfg *config.Config, store *storage.Storage, pool *scheduler.WorkerPool, feedHandler *feed.Handler) *http.Server {
2018-01-16 03:08:30 +01:00
certFile := cfg.CertFile()
keyFile := cfg.KeyFile()
certDomain := cfg.CertDomain()
certCache := cfg.CertCache()
2017-11-20 06:10:04 +01:00
server := &http.Server{
ReadTimeout: 30 * time.Second,
WriteTimeout: 30 * time.Second,
2017-11-20 06:10:04 +01:00
IdleTimeout: 60 * time.Second,
2018-01-16 03:08:30 +01:00
Addr: cfg.ListenAddr(),
Handler: routes(cfg, store, feedHandler, pool),
2017-11-20 06:10:04 +01:00
}
2017-11-22 22:11:01 +01:00
if certDomain != "" && certCache != "" {
cfg.IsHTTPS = true
2017-11-22 22:11:01 +01:00
server.Addr = ":https"
certManager := autocert.Manager{
Cache: autocert.DirCache(certCache),
Prompt: autocert.AcceptTOS,
HostPolicy: autocert.HostWhitelist(certDomain),
2017-11-20 06:10:04 +01:00
}
2017-11-22 20:16:48 +01:00
// Handle http-01 challenge.
s := &http.Server{
Handler: certManager.HTTPHandler(nil),
Addr: ":http",
}
go s.ListenAndServe()
2017-11-22 22:11:01 +01:00
go func() {
2017-12-16 03:55:57 +01:00
logger.Info(`Listening on "%s" by using auto-configured certificate for "%s"`, server.Addr, certDomain)
if err := server.Serve(certManager.Listener()); err != http.ErrServerClosed {
logger.Fatal(`Server failed to start: %v`, err)
}
2017-11-22 22:11:01 +01:00
}()
} else if certFile != "" && keyFile != "" {
cfg.IsHTTPS = true
2017-11-22 22:11:01 +01:00
// See https://blog.cloudflare.com/exposing-go-on-the-internet/
// And https://wiki.mozilla.org/Security/Server_Side_TLS
server.TLSConfig = &tls.Config{
MinVersion: tls.VersionTLS12,
PreferServerCipherSuites: true,
CurvePreferences: []tls.CurveID{
tls.CurveP256,
tls.X25519,
},
CipherSuites: []uint16{
tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,
tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
},
}
2017-11-22 20:16:48 +01:00
go func() {
2017-12-16 03:55:57 +01:00
logger.Info(`Listening on "%s" by using certificate "%s" and key "%s"`, server.Addr, certFile, keyFile)
if err := server.ListenAndServeTLS(certFile, keyFile); err != http.ErrServerClosed {
logger.Fatal(`Server failed to start: %v`, err)
}
2017-11-22 20:16:48 +01:00
}()
} else {
go func() {
2017-12-16 03:55:57 +01:00
logger.Info(`Listening on "%s" without TLS`, server.Addr)
if err := server.ListenAndServe(); err != http.ErrServerClosed {
logger.Fatal(`Server failed to start: %v`, err)
}
2017-11-22 20:16:48 +01:00
}()
}
2017-11-20 06:10:04 +01:00
return server
}