aboutsummaryrefslogtreecommitdiff
path: root/www/lighttpd/files/mysql_auth.sql
diff options
context:
space:
mode:
authorMartin Matuska <mm@FreeBSD.org>2010-08-28 10:53:22 +0000
committerMartin Matuska <mm@FreeBSD.org>2010-08-28 10:53:22 +0000
commit5b2767fa6f846a0b58148fb19f4dd2d36565c16c (patch)
treec9ebac148ed3508248eba1fd328168313921c3d8 /www/lighttpd/files/mysql_auth.sql
parent17ae2a0dddadcab15fd34c8c95cebecd64ee9584 (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.sql10
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)
+);