always run regex in server_name to get captures
diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c
index dd33169..2e70180 100644
--- a/src/http/ngx_http.c
+++ b/src/http/ngx_http.c
@@ -1395,7 +1395,12 @@
name = addr[a].names.elts;
for (s = 0; s < addr[a].names.nelts; s++) {
- if (addr[a].core_srv_conf == name[s].core_srv_conf) {
+ if (addr[a].core_srv_conf == name[s].core_srv_conf
+#if (NGX_PCRE)
+ && name[s].captures == 0
+#endif
+ )
+ {
continue;
}
@@ -1806,7 +1811,11 @@
&& (addr[i].wc_head == NULL
|| addr[i].wc_head->hash.buckets == NULL)
&& (addr[i].wc_tail == NULL
- || addr[i].wc_tail->hash.buckets == NULL))
+ || addr[i].wc_tail->hash.buckets == NULL)
+#if (NGX_PCRE)
+ && addr[i].nregex == 0
+#endif
+ )
{
continue;
}