mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2024-11-18 10:29:43 +00:00
18 lines
545 B
Go
18 lines
545 B
Go
package main
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"fmt"
|
|
)
|
|
|
|
// tlsConfig contains the configuration for generating, serving and cleaning up Let's Encrypt certificates.
|
|
var tlsConfig = &tls.Config{
|
|
GetCertificate: func(info *tls.ClientHelloInfo) (*tls.Certificate, error) {
|
|
// TODO: check DNS name & get certificate from Let's Encrypt
|
|
return nil, fmt.Errorf("NYI")
|
|
},
|
|
PreferServerCipherSuites: true,
|
|
// TODO: optimize cipher suites, minimum TLS version, etc.
|
|
}
|
|
|
|
// TODO: HSTS header with includeSubdomains & preload for MainDomainSuffix and RawDomain
|