Changeset 3488 for trunk/modules/auth/config
- Timestamp:
- 09/25/2008 10:47:04 PM (2 months ago)
- Files:
-
- 1 modified
-
trunk/modules/auth/config/auth.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/auth/config/auth.php
r3326 r3488 10 10 11 11 /** 12 * Driver to use for authentication. By default, LDAPand ORM are available.12 * Driver to use for authentication. By default, File and ORM are available. 13 13 */ 14 14 $config['driver'] = 'ORM'; … … 36 36 37 37 /** 38 * Set the session key that will be used to store the current user. 39 */ 40 $config['session_key'] = 'auth_user'; 41 42 /** 38 43 * Usernames (keys) and hashed passwords (values) used by the File driver. 44 * Default admin password is "admin". You are encouraged to change this. 39 45 */ 40 46 $config['users'] = array 41 47 ( 42 // 'admin' => ' 4ccd0e25c2a7ffefd4b92ecbbd4781752920145f826a881073',48 // 'admin' => 'b3154acf3a344170077d11bdb5fff31532f679a1919e716a02', 43 49 );
