Is it more efficient on basic auth to use:
require group abc
or
require user bob, jill, fred, pam, etc
where the group flat file contains the valid usernames?
Or does it not matter?
I am looking for an easy way to manage an extensive list of valid users for http authentication.
Thanks
If different users have different privileges, groups will be much easier to manage instead of editing all related configuration files everytime a user is added.
However, if all users have the same privileges, you don’t need to require any specific user or group, you could just go with
require valid-userso that any user is allowed access to the resource.