Skip to content

Commit

Permalink
Fix conflict with existing
Browse files Browse the repository at this point in the history
  • Loading branch information
willnode committed Nov 1, 2024
1 parent 67552af commit bc2a0c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/executor/docker.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class DockerExecutor {
}
}
// make sure to handle .well-known
let wellKnownConf = nginx.config.locations?.find(x => x.match == '/.well-known/');
let wellKnownConf = nginx.config.locations?.find(x => x.match.endsWith('/.well-known/'));
if (!wellKnownConf) {
if (!nginx.config.locations)
nginx.config.locations = [];
Expand Down

0 comments on commit bc2a0c6

Please sign in to comment.