Remove unused wfe2 route constants (#4904)
The /acme/challenge and /acme/authz routes have no associated handlers, and the challengePath and authzPath constants have no code references.
This commit is contained in:
parent
a505ff80bb
commit
edee82d572
|
|
@ -44,12 +44,10 @@ const (
|
||||||
directoryPath = "/directory"
|
directoryPath = "/directory"
|
||||||
newAcctPath = "/acme/new-acct"
|
newAcctPath = "/acme/new-acct"
|
||||||
acctPath = "/acme/acct/"
|
acctPath = "/acme/acct/"
|
||||||
authzPath = "/acme/authz/"
|
|
||||||
// For user-facing URLs we use a "v3" suffix to avoid potential confusiong
|
// For user-facing URLs we use a "v3" suffix to avoid potential confusiong
|
||||||
// regarding ACMEv2.
|
// regarding ACMEv2.
|
||||||
authzv2Path = "/acme/authz-v3/"
|
authzv2Path = "/acme/authz-v3/"
|
||||||
challengev2Path = "/acme/chall-v3/"
|
challengev2Path = "/acme/chall-v3/"
|
||||||
challengePath = "/acme/challenge/"
|
|
||||||
certPath = "/acme/cert/"
|
certPath = "/acme/cert/"
|
||||||
revokeCertPath = "/acme/revoke-cert"
|
revokeCertPath = "/acme/revoke-cert"
|
||||||
issuerPath = "/acme/issuer-cert"
|
issuerPath = "/acme/issuer-cert"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue