fix(acme): adjust ACME challenge route to /acme-challenge/.well-known/:token

This commit is contained in:
Nawaz Dhandala
2025-11-05 13:02:02 +00:00
parent d249579c1c
commit 2a15cf8676

View File

@@ -24,7 +24,7 @@ export default class AcmeChallengeAPI extends BaseAPI<
this.wellKnownRouter = Express.getRouter();
this.wellKnownRouter.get(
"/.well-known/acme-challenge/:token",
"/acme-challenge/.well-known/:token",
async (req: ExpressRequest, res: ExpressResponse, next: NextFunction) => {
try {
const challenge: AcmeChallenge | null =