diff options
author | Martin Matuska <mm@FreeBSD.org> | 2010-08-28 10:53:22 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2010-08-28 10:53:22 +0000 |
commit | 5b2767fa6f846a0b58148fb19f4dd2d36565c16c (patch) | |
tree | c9ebac148ed3508248eba1fd328168313921c3d8 /www/lighttpd/files/mysql_auth.sql | |
parent | 17ae2a0dddadcab15fd34c8c95cebecd64ee9584 (diff) |
- Integrate www/lighttpd-mysqlauth into www/lighttpd (optional)
Notes
Notes:
svn path=/head/; revision=260127
Diffstat (limited to 'www/lighttpd/files/mysql_auth.sql')
-rw-r--r-- | www/lighttpd/files/mysql_auth.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/www/lighttpd/files/mysql_auth.sql b/www/lighttpd/files/mysql_auth.sql new file mode 100644 index 000000000000..5b1a25572225 --- /dev/null +++ b/www/lighttpd/files/mysql_auth.sql @@ -0,0 +1,10 @@ +CREATE TABLE `vhosts_secure`( + vhost_secure_id bigint(20) NOT NULL AUTO_INCREMENT, + vhost_secure_username varchar(255) NOT NULL, + vhost_secure_password varchar(255) NOT NULL, + vhost_secure_realm varchar(255) NOT NULL + PRIMARY KEY (vhost_secure_id), + INDEX i_username (vhost_secure_username), + INDEX i_password (vhost_secure_password), + INDEX i_realm (vhost_secure_realm) +); |