I've got Apache2 setup on my server running gentoo linux, just to try and teach myself how to build a website from scratch. Getting static stuff up and running is fairly cake, and I've got some basic PHP stuff going on too.
One of the projects I've been working on though (Webcomics collector) requires authorization through .htaccess. Since I use PAM for the rest of the system, I automatically chose the mod_auth_pam module for Apache2 figuring I should be able to use my existing username to login.
Thus far, I've been unable to log in either remotely (from another computer on the network) or locally to the page. My .htaccess is set up correctly (I believe), both mod_auth_pam and mod_auth_sys_group are being loaded (the second module being for shadow passwords, as I understand it). My .htaccess looks something like this....
Any suggestions as to what I can do? I've been trying to hunt down a good HOWTO, but haven't found one as of yet......
One of the projects I've been working on though (Webcomics collector) requires authorization through .htaccess. Since I use PAM for the rest of the system, I automatically chose the mod_auth_pam module for Apache2 figuring I should be able to use my existing username to login.
Thus far, I've been unable to log in either remotely (from another computer on the network) or locally to the page. My .htaccess is set up correctly (I believe), both mod_auth_pam and mod_auth_sys_group are being loaded (the second module being for shadow passwords, as I understand it). My .htaccess looks something like this....
uthType Basic
AuthName "Webcomics Collector"
AuthPAM_Enabled on
Require group users
Any suggestions as to what I can do? I've been trying to hunt down a good HOWTO, but haven't found one as of yet......
