mirror of
https://github.com/NarrativeScience-old/log.io.git
synced 2026-04-25 17:15:52 +03:00
[GH-ISSUE #59] Limiting network access by network and host #43
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/log.io-NarrativeScience-old#43
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @peterfroehlich on GitHub (Mar 28, 2013).
Original GitHub issue: https://github.com/NarrativeScience-old/log.io/issues/59
This tool is really awesome, I would love to use it in the production environment of my company.
Whats holding me back is the lack of encrypted messaging (other ticket -> https) and being unable to configure defined networks and hosts that are allowed to connect as client or viewer. This goes above the simple ability of choosing which address to listen to.
Maybe something like that in the web_server.conf:
access : [ "192.168.0.0/24", "10.10.0.0/16, "8.8.8.8/32" ]
@msmathers commented on GitHub (Mar 29, 2013):
v0.3.3 now supports IP whitelisting in web_server.conf, like so:
That IP list is converted directly into a regular expression, which is applied to the inbound request's IP address. So while you can't use subnet masks, any valid regular expression will do.
Feel free to reopen this issue if that doesn't suffice.
@peterfroehlich commented on GitHub (Apr 5, 2013):
Awesome, thanks! :)