I am trying to setup authentication for a LAMP server on an Amazon EC2 with Amazon AMI instance.
When I installed apache I ran the following command
yum install httpd
How to now configure the apache to make it work for mod_auth_dbm?
I am trying to store username/passwords such that client accessing the lamp server have to provide valid authentication before they can access the files in the EC2 directory.
Or does it the above command loads mod_auth_dbm by default? Because in the httpd.conf file I see the following lines:
LoadModule auth_basic_module modules/mod_auth_basic.so
....
LoadModule authn_dbm_module modules/mod_authn_dbm.so
Does that mean mod_auth_dbm is loaded and ready to go? also note its mod_auth(n)_dbm Does it make a difference?
While on the topic, it seems mod_auth_mysql is no longer available and has been depricated. So I cannot really store the username/password in a mysql table. Correct?