From b9f0caa3adbf3ad6502ca2e14ef8987d8ba6ccd4 Mon Sep 17 00:00:00 2001 From: jbergner Date: Tue, 29 Apr 2025 14:25:17 +0200 Subject: [PATCH] Patch --- main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.go b/main.go index 083afa5..38a231a 100644 --- a/main.go +++ b/main.go @@ -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)