Igor Rzegocki
Igor Rzegocki
> Thanks for this PR and the documentation PR to go with it! It looks like it's on a good track so far. > > Quick question: Where is `REVERSE_PROXY_USER_HEADER`...
Let me also explain how this is supposed to work, to ensure that we're on the same page :) : - User visits archivebox, which is protected by auth proxy...
Yes, usually health endpoints perform some internal checks (albeit, very "light" ones, since the endpoint can be called rather often) if everything is okay, and then they return 200/500 code....
No worries, I'm a bit neckbeard too ;) Regarding DB example - what if at some point, you decide to serve some static content at `/` and forget about it?...
I've dig it some more, and it turned out - it is a bug, here: https://github.com/django/channels_redis/blob/a993f3fc1ba9e52296fdd18199f6316af39e165b/channels_redis/core.py#L138-L142 The problem is, that `host` is passed to `SentinelConnectionPool`, not to the `aioredis.sentinel.Sentinel` itself....
Looks like, something is also broken on `redis-py` side. Here are the results of my tests: Having connection built like these: ```python return aioredis.sentinel.SentinelConnectionPool( master_name, aioredis.sentinel.Sentinel(sentinels, sentinel_kwargs=sentinel_kwargs, **connection_kwargs), **host_kwargs )...
It's hard to tell what's going on... `opsworks_ruby` should restart all monit hooks after deploy as stated here: https://github.com/ajgon/opsworks_ruby/blob/master/libraries/drivers_worker_sidekiq.rb#L22 . Hook itself is handled here: https://github.com/ajgon/opsworks_ruby/blob/d5975f58334adb9a0834951be54fe8a36a257c86/libraries/helpers.rb#L56-L67 . Can you add...
The same problem occurs with rspec3 but instead of `[` there is a `#` on the beginning, so similar ugly hack for this would be: ``` cex substitute(system(cmd), '#', '',...
Hey, thanks for taking care of this: ``` $ gem list | grep rspec rspec (3.1.0) rspec-core (3.1.7) rspec-expectations (3.1.2) rspec-mocks (3.1.3) rspec-rails (3.1.0) rspec-support (3.1.2) spring-commands-rspec (1.0.4) ``` ```...
Works like a charm, thank you :smile: