The following:
proxy.auth = name=default;type=basic;file=/passwd/default.htpasswd
name=kamil;type=basic;file=/passwd/kamil.htpasswd
Does not work and second entry is ignored.
The following does work:
proxy.auth = name=default;type=basic;file=/passwd/default.htpasswd,name=kamil;type=basic;file=/passwd/kamil.htpasswd
It is parsed with
|
func parseKVSlice(in string) ([]map[string]string, error) { |
The following:
Does not work and second entry is ignored.
The following does work:
It is parsed with
fabio/config/kvslice.go
Line 20 in 642e425