Split code into multiple files

This commit is contained in:
Moritz Marquardt 2021-03-17 00:34:31 +01:00
parent 1a80684e79
commit 241f7a57ec
No known key found for this signature in database
GPG key ID: D5788327BEE388B6
4 changed files with 298 additions and 271 deletions

16
certificates.go Normal file
View file

@ -0,0 +1,16 @@
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.
}