mod_access is very standard. Are you certain this is not included already? I am not certain of where the files are located/laid out in SuSE but in RedHat it is loaded by default in '/etc/httpd/conf/httpd.conf':
Code:
[root@vs03 /]# cat /etc/httpd/conf/httpd.conf | grep -i mod_access
LoadModule access_module modules/mod_access.so
If you don't find it there, grep everything for it:
Code:
[root@vs03 /]# grep -ri "mod_access" /etc/httpd/*
/etc/httpd/build/config_vars.mk:MOD_ACCESS_LDFLAGS =
/etc/httpd/build/config_vars.mk:MOD_ACCESS_LIBS =
/etc/httpd/conf/httpd.conf:LoadModule access_module modules/mod_access.so
Binary file /etc/httpd/modules/mod_access.so matches
If the configuration is not there, but the 'mod_access.so' module is, then simply add the configuration to load it:
Code:
LoadModule access_module </path/to/modules/dir/mod_access.so
Recent comments
1 day 17 hours ago
1 day 19 hours ago
2 days 7 hours ago
2 days 10 hours ago
2 days 14 hours ago
2 days 20 hours ago
3 days 6 hours ago
3 days 7 hours ago
3 days 16 hours ago
3 days 17 hours ago