psa.protected_dirs
Overview
The protected_dirs
table contains the authentication configuration for websites on the server.
Column Descriptions
id – primary key that is automatically incremented
non_ssl – true
if it should be in effect on non-SSL connections, otherwise false
ssl – true
if it should be in effect on SSL connections, otherwise false
cgi_bin – true
if it should be in effect for files in cgi-bin, otherwise false
realm – which realm text to display when the user is asked to authenticate
path – the path to secure
dom_id – links to id
in domains
table
Table Structure
CREATE TABLE `protected_dirs` ( `id` int(10) unsigned NOT NULL auto_increment, `non_ssl` enum('false','true') NOT NULL default 'false', `ssl` enum('false','true') NOT NULL default 'false', `cgi_bin` enum('false','true') NOT NULL default 'false', `realm` varchar(255) character set utf8 collate utf8_bin default NULL, `path` varchar(245) character set ascii collate ascii_bin NOT NULL default '', `dom_id` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `dom_id` (`dom_id`,`path`) ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=latin1 |