Skip to content

Commit

Permalink
Fix extract custom proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
willnode committed Sep 26, 2024
1 parent b1592a4 commit bcebb01
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/executor/nginx.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,8 @@ class NginxExecutor {
r[k] = "unit";
} else if (v.startsWith(dockerProxy)) {
r[k] = "docker:" + v.slice(dockerProxy.length);
} else {
r[k] = v;
}
} else if (k == "rewrite") {
if (r["rewrite"]) {
Expand Down

0 comments on commit bcebb01

Please sign in to comment.