-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bind the service on all available interface #60
Comments
+1 to this. With later versions of redis you can specify multiple bind => "ipddr1 ipddr2". |
You can do this to listen on all interfaces: |
Okay, but that does not really solve the problem ... |
Well it solves the issue you describe and the title of the issue, but yes it doesn't solve binding multiple selective interfaces, which would be a good enhancement. |
Ok, should be easy enough to implement, simply change the $bind variable to an array, loop through the array for multiple bindings 👍 |
* Allows setting bind to multiple IP addresses * Closes voxpupuli#60
`bind` now takes an array (of IP addresses). To bind to all interfaces, use `bind => []`. Due to the new parameter validation, if you were previously using a single string to specify multiple IP addresses, you will need to change this to an array. Fixes voxpupuli#257 Fixes voxpupuli#60
`bind` now takes an array (of IP addresses). To bind to all interfaces, use `bind => []`. Due to the new parameter validation, if you were previously using a single string to specify multiple IP addresses, you will need to change this to an array. Fixes voxpupuli#257 Fixes voxpupuli#60
`bind` now takes an array (of IP addresses). To bind to all interfaces, use `bind => []`. Due to the new parameter validation, if you were previously using a single string to specify multiple IP addresses, you will need to change this to an array. Fixes voxpupuli#257 Fixes voxpupuli#60
`bind` now takes an array (of IP addresses). To bind to all interfaces, use `bind => []`. Due to the new parameter validation, if you were previously using a single string to specify multiple IP addresses, you will need to change this to an array. Fixes voxpupuli#257 Fixes voxpupuli#60
`bind` now takes an array (of IP addresses). To bind to all interfaces, use `bind => []`. Due to the new parameter validation, if you were previously using a single string to specify multiple IP addresses, you will need to change this to an array. Fixes voxpupuli#257 Fixes voxpupuli#60
ATM it's not possible to disable the bind parameter of the configuration file, it's also not possible to specify multiple binding address using the recipe. So if you want your server to listen to every available network interfaces, it's not possible ...
The text was updated successfully, but these errors were encountered: