mirror of
https://github.com/tailscale/tailscale.git
synced 2025-03-30 13:02:49 +00:00
30 lines
719 B
Go
30 lines
719 B
Go
// Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// The servetls program shows how to run an HTTPS server
|
|
// using a Tailscale cert via LetsEncrypt.
|
|
package main
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"io"
|
|
"log"
|
|
"net/http"
|
|
|
|
"tailscale.com/client/tailscale"
|
|
)
|
|
|
|
func main() {
|
|
s := &http.Server{
|
|
TLSConfig: &tls.Config{
|
|
GetCertificate: tailscale.GetCertificate,
|
|
},
|
|
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
io.WriteString(w, "<h1>Hello from Tailscale!</h1> It works.")
|
|
}),
|
|
}
|
|
log.Printf("Running TLS server on :443 ...")
|
|
log.Fatal(s.ListenAndServeTLS("", ""))
|
|
}
|