I am trying to build a subversion server using the mechanisms provided
by mod_authnz_external, pwauth and mod_authz_unixgroups.
I installed mod_authz_unixgroups via apt and looked for a load file in
order to add it to the config. It didn't exist so I created one with
the following line:
LoadModule authz_unixgroup /usr/lib/apache2/modules/
mod_authz_unixgroup.so
on restarting apache (apache 2.2) I get:
Syntax error on line 203 of /etc/apache2/apache2.conf: Syntax error on
line 1 of /etc/apache2/mods-enabled/authz_unixgroup.load: Can't locate
API module structure `authz_unixgroup' in file /usr/lib/apache2/
modules/mod_authz_unixgroup.so: /usr/lib/apache2/modules/
mod_authz_unixgroup.so: undefined symbol: authz_unixgroup
help?
thanks
Bernhard
I think the command needs to be
LoadModule authz_unixgroup_module
/usr/lib/apache2/modules.mod_authz_unixgroup.so
The API module structure has "_module" on the end of it's name.
- Jan