mirror of
https://github.com/NarrativeScience-old/log.io.git
synced 2026-04-25 17:15:52 +03:00
[GH-ISSUE #123] [feature request] Allow the use of hashed passwords. #99
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#99
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 @LaKing on GitHub (Aug 6, 2014).
Original GitHub issue: https://github.com/NarrativeScience-old/log.io/issues/123
To integrate log.io properly into my project, I would need authentication against a hashed password in the web_server.conf.
lib/server.js line 367?
@msmathers commented on GitHub (Aug 7, 2014):
What hashing algorithm are you planning to use? If we can all agree on sha1, then we could add an additional parameter to the
authparameter to indicate this. So the new config could look something like:@LaKing commented on GitHub (Aug 7, 2014):
We can go with sha1, sha512, or even md5. I picked sha512 for etherpad (ep_hash_auth), but actually the hash type and the hash digest can be easily passed over as parameter too, so only the default is something we should agree on.
The code needs extension with something like this.
@msmathers commented on GitHub (Jan 16, 2020):
v0.4x removes support for auth in the log.io server. We currently recommend using an nginx reverse proxy to add authentication in front of the log.io server. The following recipe seems to work for most people: https://stackoverflow.com/a/29232687