Brian Stolz

Results 10 comments of Brian Stolz

Current order of % of total hashrate: (Note: BTCGuild is down I believe) - Deepbit - Slush - BTCMine - BitcoinPool - Bitcoins.lc - MTRed

Here is config for mtred: ``` 'mtred' => array( 'url' => 'https://mtred.com/api/user/key/123', 'confirmed' => 'balance', 'unconfirmed' => ''), ```

btcmine: ``` 'btcmine' => array( 'url' => 'http://btcmine.com/api/getbalance/123/', 'confirmed' => 'confirmed', 'unconfirmed' => 'unconfirmed'), ```

bitcoinpool doesn't use API keys, they allow you to see the balances of any user. Put your USERNAME in the correct location. ``` 'bitcoinpool' => array( 'url' => 'http://bitcoinpool.com/user.php?u=USERNAME&json=1', 'confirmed'...

We're running into an issue where we have basic auth enabled on a fabio route (fabio doing the auth) ... but then fabio is passing that `Authentication` header to the...

@leprechau The route in question doesn't have basic auth on it, but other routes for the same domain do. Which means that your browser sends it regardless if fabio requires...

We also need ARG support. ENV vars are ARGS are very different. ENV vars are not used when building a docker image, only ARGS are.

I don't know if this will help anyone else, but we found if we ran any alpine-based docker image on-top of amazon's ECS AMI, that we would get a 400ms...

I just realized that `options timeout:2 attempts:5` which means: 2s = 2000ms 2000 / 5 = 400ms Is alpine using an OVERALL timeout of 2 seconds, and then attempting to...

Does this mean support for health checks are coming?