mirror of
https://github.com/1f349/violet.git
synced 2024-11-23 11:51:37 +00:00
Reformat the tls config
This commit is contained in:
parent
2cce26429b
commit
bc6e98db8c
@ -31,7 +31,8 @@ func NewHttpsServer(conf *conf.Conf) *http.Server {
|
|||||||
rw.Header().Set("Strict-Transport-Security", "max-age=63072000; includeSubDomains")
|
rw.Header().Set("Strict-Transport-Security", "max-age=63072000; includeSubDomains")
|
||||||
rateLimiter.ServeHTTP(rw, req)
|
rateLimiter.ServeHTTP(rw, req)
|
||||||
}),
|
}),
|
||||||
TLSConfig: &tls.Config{GetCertificate: func(info *tls.ClientHelloInfo) (*tls.Certificate, error) {
|
TLSConfig: &tls.Config{
|
||||||
|
GetCertificate: func(info *tls.ClientHelloInfo) (*tls.Certificate, error) {
|
||||||
// error out on invalid domains
|
// error out on invalid domains
|
||||||
if !conf.Domains.IsValid(info.ServerName) {
|
if !conf.Domains.IsValid(info.ServerName) {
|
||||||
return nil, fmt.Errorf("invalid hostname used: '%s'", info.ServerName)
|
return nil, fmt.Errorf("invalid hostname used: '%s'", info.ServerName)
|
||||||
@ -45,7 +46,8 @@ func NewHttpsServer(conf *conf.Conf) *http.Server {
|
|||||||
|
|
||||||
// time to return
|
// time to return
|
||||||
return cert, nil
|
return cert, nil
|
||||||
}},
|
},
|
||||||
|
},
|
||||||
ReadTimeout: 150 * time.Second,
|
ReadTimeout: 150 * time.Second,
|
||||||
ReadHeaderTimeout: 150 * time.Second,
|
ReadHeaderTimeout: 150 * time.Second,
|
||||||
WriteTimeout: 150 * time.Second,
|
WriteTimeout: 150 * time.Second,
|
||||||
|
Loading…
Reference in New Issue
Block a user