this post was submitted on 02 Dec 2023
25 points (100.0% liked)
Open Source
30957 readers
479 users here now
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon from opensource.org, but we are not affiliated with them.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
i don't know if all of those forum software supports this but this is why we have OpenLDAP for. you can have username as a login criterion and not full [email protected]. that way when you create a user in one place, you would have that same user everywhere.
I only know ldap from corporate infrastructure when you have 1000 users and 1000 computers which get switched. Can you elaborate why this would work with forums and social media (if they had support)?
ldap is a central authority server. when you have ldap supported software, you can alliviate authorization to a central server. and if you make it so that you only need username for credentials (uid=%s,dc=example,dc=com in ldap jargon), you centralize your user database.
that's what i use on my home server. it takes most of the user registration hassle away.
edit: by the way dc=example,dc=com is just an arbitrary value, you don't have to have certbot certification for that or anything.
Interesting! Thanks for elaborating.