############################################################################## # # MySQL based authentication # ############################################################################## LoadModule = mod_auth_mysql.php # Use these directives in a conf/vhost/access file to use mod_auth_mysql # # AuthRealm = your auth realm name here # AuthRequire = MYSQL # AuthMysqlHost = localhost # AuthMysqlUser = db_user # AuthMysqlPass = db_pass # AuthMysqlDB = db_name # AuthMysqlTable = table_name # AuthMysqlPassType = plain | crypt | md5 | mysql # AuthMysqlLoginColumn = login_field_name # AuthMysqlPassColumn = password_field_name # # Password types are # # plain : password is plaintext # crypt : password is hashed using the system crypt() # md5 : password is hashed using the md5 algorithm # mysql : password is hashed using the mysql password algorithm