diff options
Diffstat (limited to 'src/https.rs')
-rw-r--r-- | src/https.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/https.rs b/src/https.rs index 49df11a..2353c2d 100644 --- a/src/https.rs +++ b/src/https.rs @@ -233,7 +233,8 @@ async fn select_target_and_proxy( .entries .iter() .filter(|ent| { - ent.host.matches(host) + ent.flags.healthy + && ent.host.matches(host) && ent .path_prefix .as_ref() |