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 has been archived by the owner on Mar 2, 2020. It is now read-only.
I would like to add an LDAP authentication.
Few questions:
Is auth key currently hashed on client side (react)? If true do you plan to replace it with plaintext + https option? I do not think it is possible to do client sode hashing with ldap.
Is there an option secure the whole website and not just a few pages?
Why do you keep web and api projects separate? It does not seem to simplify branch development model as it usualy covers both.
Is it OK if I add login field to the web ui if ldap is enabled?
The text was updated successfully, but these errors were encountered:
As there is no HTTPS connection available, the password is kept a secret by hashing it (twice) before communicating with the API. This however makes the hashed password effectively the API password. HTTPS is required to make this communication secure, but our thought was that HTTPS is not needed for most home installs. If someone needs HTTPS, then they can add it manually (see the guide). The new web interface can be proxyed to provide HTTPS support.
Each page's authentication level is manually determined, as well as the corresponding API methods. If this is made dynamic, would you also want to dynamically change the API methods' authentication levels?
All of our projects are kept in separate repositories. We have not yet found a need for a monorepo, but it's still a possibility.
Ldap needs user/password combination, but currently web offers only password field.
I am planning to add a simple ldap config to api.toml with address and bind_dn. Then if ldap is enabled web may show a user/password and not hash password in js.
I would like to add an LDAP authentication.
Few questions:
The text was updated successfully, but these errors were encountered: