nand2

Results 15 comments of nand2

Hi! Please find here a working fix for accounts.google.com login. https://github.com/minbrowser/min/pull/893 Let me know if you think of a better approach! Thanks

Hello! Sorry it's been so long on my mailbox! Unfortunately I'm having a unexpected project which is eating all my free time :-/ Your modifications seem quite interesting and substantial,...

Hello! Well, I was not planning to work on that in the near future -- wasn't aware of a Varnish version 4! I'll have a look next week-end and see...

Hello, Sorry, I don't think I'm going to be able to make it in the very short term :-/ Hopefully I'll be handling this during February. Cheers,

Hello! I'm afraid I wasn't able to do it and I don't think I'll be able to do that in the near future -- I have right now a project...

Hello! I have at least a quick way to check and debug your problem. There is a known bug (https://github.com/nand2/libvmod-throttle/issues/3) that this vmod will segfault, if the given key is...

Hello! Be careful, calling throttle.is_allowed() increments the counter, so here it increments for all URLs. So first: if (req.url ~ "xmlrpc.php|wp-login.php") { if (throttle.is_allowed("ip:" +req.http.X-Actual-IP, "45req/s") > 0s) { shield.conn_reset();...

Hello! Yes if (req.url ~ "xmlrpc.php|wp-login.php") { if (throttle.is_allowed("ip:" +req.http.X-Actual-IP, "45req/s") > 0s) { shield.conn_reset(); } Looks good. Yes it should work with client.ip, as shown in the documentation... except...

Using the attached PR, the bug no longer appears. I'm new to the go-ethereum codebase, so my code may be wrong, please let me know :-)

I have modified the contents to take into account Sam's point : if the compression of the returned data is advertised by the client in `accept-encoding`, then decompression by the...