diff options
author | fireice-uk <fireice-uk@users.noreply.github.com> | 2017-11-10 19:14:29 +0000 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-11-10 20:14:29 +0100 |
commit | 7942372e218568f8b27446115cfbb743f7cabf6c (patch) | |
tree | 3e658ac8b856fe4b78f8b808d059cfadc2776496 /xmrstak/config.tpl | |
parent | d35893d926c74893d7c85d1b87b24ffa55744649 (diff) | |
download | xmr-stak-7942372e218568f8b27446115cfbb743f7cabf6c.zip xmr-stak-7942372e218568f8b27446115cfbb743f7cabf6c.tar.gz |
Add HTTP Digest auth (#98)
Diffstat (limited to 'xmrstak/config.tpl')
-rw-r--r-- | xmrstak/config.tpl | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/xmrstak/config.tpl b/xmrstak/config.tpl index c06d121..c3ea061 100644 --- a/xmrstak/config.tpl +++ b/xmrstak/config.tpl @@ -106,7 +106,7 @@ POOLCONF], */ /* - * use_slow_memory defines our behavior with regards to large pages. There are three possible options here: + * use_slow_memory defines our behaviour with regards to large pages. There are three possible options here: * always - Don't even try to use large pages. Always use slow memory. * warn - We will try to use large pages, but fall back to slow memory if that fails. * no_mlck - This option is only relevant on Linux, where we can use large pages without locking memory. @@ -159,6 +159,19 @@ POOLCONF], "httpd_port" : 0, /* + * HTTP Authentication + * + * This allows you to set a password to keep people on the Internet from snooping on your hashrate. + * Keep in mind that this is based on HTTP Digest, which is based on MD5. To a determined attacker + * who is able to read your traffic it is as easy to break a bog door latch. + * + * http_login - Login. Empty login disables authentication. + * http_pass - Password. + */ +"http_login" : "", +"http_pass" : "", + +/* * prefer_ipv4 - IPv6 preference. If the host is available on both IPv4 and IPv6 net, which one should be choose? * This setting will only be needed in 2020's. No need to worry about it now. */ |