Fix HTTP method for /ssh/sign

pull/129/head
Mariano Cano 5 years ago
parent 92bbadba32
commit 7b8f0327bd

@ -250,7 +250,7 @@ func (h *caHandler) Route(r Router) {
r.MethodFunc("GET", "/roots", h.Roots)
r.MethodFunc("GET", "/federation", h.Federation)
// SSH CA
r.MethodFunc("GET", "/ssh/sign", h.SignSSH)
r.MethodFunc("POST", "/ssh/sign", h.SignSSH)
r.MethodFunc("GET", "/ssh/keys", h.SSHKeys)
// For compatibility with old code:

Loading…
Cancel
Save