Re: Anonymize IP logging

2018-03-31 Thread masonicboom
I made a module called ipscrub that does this: http://www.ipscrub.org. It hashes the IP address with an ephemeral salt, so that you can match up requests from the same IP (using the hash), but each time the salt cycles, it becomes impossible to match an IP address with a hash in the logs. Posted a

Re: Is grpc keepalive supported ?

2018-03-31 Thread Maxim Dounin
Hello! On Sat, Mar 31, 2018 at 06:36:35AM -0400, bcoz123 wrote: > Hello everyone, > In the latest version(1.13.10) > Does ‘grpc_pass’ support the ‘keepalive’ option ? > My configuration is: > > ... > http { > ... > upstream backend { > server localhost:50051; > keepalive

Is grpc keepalive supported ?

2018-03-31 Thread bcoz123
Hello everyone, In the latest version(1.13.10) Does ‘grpc_pass’ support the ‘keepalive’ option ? My configuration is: ... http { ... upstream backend { server localhost:50051; keepalive 300; } server { listen 80 http2; location / { grpc_p