mod_auth_sqlite

mod_auth_sqlite module provides Apache user authentication using SQLite.
Download

mod_auth_sqlite Ranking & Summary

Advertisement

  • Rating:
  • License:
  • The Apache License
  • Price:
  • FREE
  • Publisher Name:
  • Tomohiro IKEBE
  • Publisher web site:
  • http://shebang.jp/src/apache/

mod_auth_sqlite Tags


mod_auth_sqlite Description

mod_auth_sqlite module provides Apache user authentication using SQLite. mod_auth_sqlite module provides Apache user authentication using SQLite. SQLite is a SQL Database Engine In a C Library.Requirements:· ApacheInstallation:1) Install SQLite. See http://www.hwaci.com/sw/sqlite/ for details.2) Make mod_auth_sqlite as a DSO module. modify your Makefile. INC, LIB and apxs path. % make # make installCREATE TABLES The Default Tables are below. CREATE TABLE htpasswd ( user CHAR(16) NOT NULL PRIMARY KEY, passwd CHAR(16) NOT NULL ); CREATE TABLE htgroup ( groupname CHAR(16) NOT NULL, user CHAR(16) NOT NULL ); CREATE UNIQUE INDEX htgroup_uniq_idx ON htgroup(groupname, user);CONFIG EXAMPLE< Directory /path/to/secrete_area > AuthName SQLiteAuth AuthType basic AuthSQLiteUserDB /path/to/your_database # ... require valid-user< /Directory >You also use these directives. in your .htaccess


mod_auth_sqlite Related Software