You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 4, 2019. It is now read-only.
The standard elasticsearch method for getting Array from the settings
file always defaults to the default passed array.
In order to allow disabling the whitelist the value can be checked first
as a boolean (with `true` as default) and furthermore as whitelist Array
fix #41
|`http.basic.enabled`| true |**true** disables the default ES HTTP Transport module |
38
39
|`http.basic.user`| "admin" ||
39
-
|`http.basic.password`| "admin_pw" ||
40
-
|`http.basic.ipwhitelist`|["localhost", "127.0.0.1"]|uses Host Name Resolution from [java.net.InetAddress](http://docs.oracle.com/javase/7/docs/api/java/net/InetAddress.html)|
40
+
|`http.basic.password`| "admin_pw" ||
41
+
|`http.basic.ipwhitelist`|["localhost", "127.0.0.1"]|If set to `false` no ip will be whitelisted. Uses Host Name Resolution from [java.net.InetAddress](http://docs.oracle.com/javase/7/docs/api/java/net/InetAddress.html)|
41
42
|`http.basic.trusted_proxy_chains`|[]| Set an array of trusted proxies ips chains |
42
43
|`http.basic.log`| false | enables plugin logging to ES log. Unauthenticated requests are always logged. |
43
44
|`http.basic.xforward`| "" | most common is [X-Forwarded-For](http://en.wikipedia.org/wiki/X-Forwarded-For)|
Copy file name to clipboardExpand all lines: src/test/java/com/asquera/elasticsearch/plugins/http/auth/integration/DisabledWhitelistIntegrationTest.java
0 commit comments