File tree 2 files changed +2
-0
lines changed
2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ export function createHttpHandler(options: {
33
33
34
34
// --- A few initial administrative endpoints, that don't support CORS etc etc ---
35
35
if ( path . startsWith ( '/.well-known/acme-challenge/' ) ) {
36
+ console . log ( "Got ACME challenge request" , path ) ;
36
37
const token = path . split ( '/' ) [ 3 ] ;
37
38
const response = options . acmeChallengeCallback ( token ) ;
38
39
if ( response ) {
Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ export class AcmeCA {
131
131
csr,
132
132
challengePriority : [ 'http-01' ] ,
133
133
termsOfServiceAgreed : true ,
134
+ skipChallengeVerification : true ,
134
135
challengeCreateFn : async ( _authz , challenge , keyAuth ) => {
135
136
if ( challenge . type !== 'http-01' ) {
136
137
throw new Error ( `Unexpected ${ challenge . type } challenge` ) ;
You can’t perform that action at this time.
0 commit comments