Access to a Apache website can be controlled with a line as
Require user john paul george ringo
in a .htaccess file. See https://httpd.apache.org/docs/2.4/mod/mod_authz_user.html. This same rule can also be written in multiple lines such as
Require user john
Require user paul
Require user george
Require user ringo
My questions:
- Is there any known limit on the number of usernames that can be included in a .htaccess file?
- Does it make any difference using the single- versus multi-line approach?