Patch
All checks were successful
release-tag / release-image (push) Successful in 1m50s

This commit is contained in:
jbergner
2025-04-29 14:25:17 +02:00
parent 1765d55ac6
commit b9f0caa3ad

View File

@@ -501,6 +501,9 @@ func (s *server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
case r.Method == http.MethodGet && r.URL.Path == "/directory":
s.handleDirectory(w, r)
case r.Method == http.MethodGet && r.URL.Path == "/acme/directory":
s.handleDirectory(w, r)
case r.Method == http.MethodPost && r.URL.Path == "/acme/new-account":
s.handleNewAccount(ctx, w, r)