Skip to content

Commit a697b69

Browse files
Fix certificate generation flow
A recent change to the logic in auth.ts prevented /.well-known/acme-challenge/* requests from being allowed without authentication. This commit fixes that.
1 parent 4ee170d commit a697b69

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/src/server/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const ALLOWED_ANONYMOUS_ROUTES = [
7575
"/logs/ingest",
7676
"/settings",
7777
"/templates",
78-
"/.well-known/acme-challenge/",
78+
"/.well-known/acme-challenge",
7979
];
8080

8181
export const ALLOWED_ANONYMOUS_OPERATIONS: (keyof operations)[] = [

0 commit comments

Comments
 (0)