boulder/wfe2
Daniel McCarney e5b8d530b7
wfe2: Return Status 200 for HEAD to new-nonce endpoint. (#3992)
Previously we mistakenly returned status 204 (no content) for all
requests to new-nonce, including HEAD. This status should only be used
for GET requests.

When the `HeadNonceStatusOK` feature flag is enabled we will now return
the correct status for HEAD requests. When the flag is disabled we return
status 204 to preserve backwards compatibility.
2019-01-07 12:58:30 -05:00
..
test Fix various WFE2 bugs. (#3292) 2017-12-19 13:13:29 -08:00
README.md Duplicate WFE to WFE2. (#2839) 2017-07-05 13:32:45 -07:00
stats.go ACME v2 Finalize order support (#3169) 2017-11-01 12:39:44 -07:00
verify.go ACME v2: Optional POST-as-GET support. (#3883) 2018-10-22 18:03:47 -04:00
verify_test.go ACME v2: Optional POST-as-GET support. (#3883) 2018-10-22 18:03:47 -04:00
wfe.go wfe2: Return Status 200 for HEAD to new-nonce endpoint. (#3992) 2019-01-07 12:58:30 -05:00
wfe_test.go wfe2: Return Status 200 for HEAD to new-nonce endpoint. (#3992) 2019-01-07 12:58:30 -05:00

README.md

WFE v2

The wfe2 package is copied from the wfe package in order to implement the "ACME v2" API. This design choice was made to facilitate a clean separation between v1 and v2 code and to support running a separate API process on a different port alongside the v1 API process.