Results 55 comments of Aaron Hurt

@vesnus The response form @tristanmorgan is correct. If you want Fabio to inject headers you will need to do an http and/or https listener. https://fabiolb.net/ref/proxy.addr/

I've used the Sync.Map implementation successfully for a few high transaction environments. It works well when you have few updates but many concurrent reads which *should* be the case here....

You probably want to do something like ... ```go var val interface{} // hold onto it after the if block if val, ok := mymap.Load(pattern); !ok { // value didn't...

@galen0624 Left a comment in the PR.

Having a very similar issue. We use path-based routing for nearly all of our backend services and dynamically generate the load balancer config from consul. I'm registering the `vault-ui` container...

@djenriquez I'm accessing vault-ui from `https://domain.foo/vault-ui/` via HAProxy. Example HAProxy config below ... In main section: ``` acl path_vault-ui path_beg /vault-ui/ use_backend app_vault-ui if path_vault-ui ``` Backend configuration: ``` backend...

@djenriquez can we get this re-opened?

That sounds reasonable. The ACL code hasn't been touched in quite some time (6 years ago according to git-blame).

The last 1.4.x release was in 2019, I think that's acceptable. Just add a note somewhere in the README that ACL functionality for consul versions >= 1.4.x require backinator