Using Caddy as Go package/library for HTTPS certification

Following on Import Caddy in go code and auto-agree to LetsEncrypt terms - #2 by LewPayne, I now know that caddy package - github.com/mholt/caddy - pkg.go.dev contains a small example showing how to use this caddy package, via a Caddyfile.

Now, would it be possible to use Caddy package/library just for HTTPS certification? I.e., to setup the HTTPS service and automatically acquired certification from LetsEncrypt? Just that, without any Caddyfile processing handling.

I need my program as minimalist as possible, because its only purpose is to sever an 1x1 pixel, via either HTTP or HTTPS.

I skimmed thought the functions in caddy package - github.com/mholt/caddy - pkg.go.dev, and seems to me such functionality is not exposed. Am I right? If so, would you expose such functionality please @matt?

Thanks

I.e., make the following haddles HTTPS as well, automatically deal with certification accquire/renew from LetsEncrypt.

package main

import (
        "net/http"
)

func sayHello(w http.ResponseWriter, r *http.Request) {
        w.Write([]byte(<my 1x1 pixel>))
}

func main() {
        http.HandleFunc("/", sayHello)
        println("Starting server on port 80")
        if err := http.ListenAndServe(":80", nil); err != nil {
                panic(err)
        }
}

thanks

Found pkgsite: doesn't handle non-ascii package name, regression compared to godoc · Issue #43036 · golang/go · GitHub

This package is meant to be used by Caddy server types. To use the tls directive, a server type must import this package and call RegisterConfigGetter(). The server type must make and keep track of the caddytls.Config structs that this package produces. It must also add tls to its list of directives. When it comes time to make the server instances, the server type can call MakeTLSConfig() to convert a caddytls.Config to a single tls.Config for use in tls.NewListener(). It is also recommended to call RotateSessionTicketKeys() when starting a new listener.

UPDATE: I guess the “used by Caddy server types” means the caddy package - github.com/mholt/caddy - Go Packages.

Now UTSL (since ServerType don’t have any examples) to continue investing…

Hi @xpt,

You can certainly import Caddy in your main file and, for example, feed it a simple Caddyfile to proxy to your app on an internal port, maybe.

I think you want to look at CertMagic instead, though. This is the guts of Caddy’s Automatic HTTPS, provided as a library that Caddy now uses and you should be able to, as well.

GitHub - caddyserver/certmagic: Automatic HTTPS for any Go program: fully-managed TLS certificate issuance and renewal

1 Like

I too get the strong feeling you should be using CertMagic instead…

< smile >, for sure. thank you both!

And I found it very easy to get it working. Wonderful!

Just one added question -

Do I need to care/worry about “no OCSP stapling”?

2019/05/12 22:19:00 [INFO] [my.domain.name] Server responded with a certificate.
2019/05/12 22:19:00 [WARNING] Stapling OCSP: no OCSP stapling for [my.domain.name]: parsing OCSP response: ocsp: error from server: unauthorized
2019/05/12 22:19:00 [my.domain.name] Serving HTTP->HTTPS on [::]:80 and [::]:443

Sorry for being lazy not to find out what OCSP is. I did try a quick search though and landed here -
https://godoc. org/github. com/mholt/certmagic#KeyBuilder.OCSPStaple

I’m merely using the recommended, certmagic.HTTPS([]string{"my.domain.name"}, mux), and am able to visit my site just fine though.

Thx

Oh, just noticed that two of my posts were

as spam.

Is it done but a bot or some real human?
Both are just fine to me, I don’t know why they are triggered as spam.

It’s a bot. Looks like your posts have been manually approved, but it was occurring because you’re a new user - so I’ve set your trust level up (you’re clearly not a bot :smiley: )

thanks @Whitestrake, :slight_smile:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.