On Mon, Jan 23, 2017 at 11:53:43AM -0800, Junio C Hamano wrote: > Patrick Steinhardt writes: > > > This patch is mostly a request for comments. The use case is to > > be able to configure an HTTP proxy for all subdomains of a > > certain domain where there are hundreds of subdomains. The most > > flexible way I could imagine was by using regular expressions for > > the matching, which is how I implemented it for now. So users can > > now create a configuration key like > > `http.?http://.*\\.example\\.com.*` to apply settings for all > > subdomains of `example.com`. > > While reading 2/2, I got an impression that this is "too" flexible > and possibly operates at a wrong level. I would have expected that > the wildcarding to be limited to the host part only and hook into > match_urls(), allowing the users of the new feature to still take > advantage of the existing support of "http://me@example.com" that > limits the match to the case that the connection is authenticated > for a user, for example, by newly allowing "http://me@*.example.com" > or something like that. > > Because you cannot have a literal '*' in your hostname, I would > imagine that supporting a match pattern "http://me@*.example.com" > would be already backward compatible without requiring a leading > question-mark. > > I also personally would prefer these textual matching to be done > with glob not with regexp, by the way, as the above description of > mine shows. > > Thanks. Thanks for your feedback. Using globs in the hostname only was my first intent, as well. I later on took regular expressions instead so as to allow further flexibility for the user. The reasoning was that there might be other use cases which cannot actually be solved with using globs only, even if I myself wasn't aware of different ones. So this might be indeed over-engineered when using regular expressions. There are several questions though regarding semantics with globs, where I'd like to have additional opinions on. - should a glob only be allowed for actual subdomains, allowing "http://*.example.com" but not "http://*example.com"? - should a glob also match multiple nestings of subdomains? E.g. "http://*.example.com" would match "http://foo.example.com" but not "http://foo.bar.example.com"? I'll send a version 2 soon-ish. Regards Patrick