Justin Keller
Justin Keller
Isn't this a security issue? I know obviously it is recommended to only expose genghis locally, or else use web server `allow` and `deny` directives, still, ins't there a better...
Can't validate TXT records. ``` Traceback (most recent call last): File "./dns_compare", line 74, in z = dns.zone.from_file(opts.zonefile, origin=opts.zone, relativize=False) File "/usr/lib/python2.6/site-packages/dns/zone.py", line 1041, in from_file filename, allow_include, check_origin) File...
Does this respect `.gitignore` to prevent sending secrets, passwords, api keys to 3rd parties? Thanks.
Perhaps the server could store lines to something like [RethinkDB](http://rethinkdb.com)?
Is timeout configurable, seems to default to 1s.
Can you add a flag into `config.js` to specify ssl ciphers, similar to nginx, so we can support perfect forward secrecy? ``` ssl_prefer_server_ciphers on; ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers...
If I setup a publisher like: ```javascript const zmq = require('zeromq'); const publisher = new zmq.Publisher({ sendHighWaterMark: 1, sendTimeout: 0, heartbeatInterval: 10000, }); publisher.bind('tcp://127.0.0.1:3030'); ``` And then `send()` without any...
Trying to use plain authentication with a Push/Pull model: ```javascript ### server.js const zeroMQSocket = new zmq.Push({ plainUsername: env.ZEROMQ_USERNAME, plainPassword: env.ZEROMQ_PASSWORD, sendTimeout: 0 }); ### worker.js const zeroMQSocket = new...
I think the Let's Encrypt certificate for https://docs.gluster.org/ just expired.
Is it possible to have a RethinkDB configuration file parse `~` users home directory? Currently this does not seem to work. ``` daemon directory=~/Sites/my-project/rethinkdb/data log-file=~/Sites/my-project/rethinkdb/rethinkdb.log bind=127.0.0.1 cache-size=256 ```