<?php
// IF YOU HAVE NOT DONE SO, PLEASE READ THE README FILE FOR DIRECTIONS!!!

/**
 * phpMyID - A standalone, single user, OpenID Identity Provider
 *
 * @package phpMyID
 * @author CJ Niemira <siege (at) siege (dot) org>
 * @copyright 2006-2008
 * @license http://www.gnu.org/licenses/gpl.html GNU Public License
 * @url http://siege.org/projects/phpMyID
 * @version 2
 */


/**
 * User profile
 * @name $profile
 * @global array $GLOBALS['profile']
 */
$GLOBALS['profile'] = array(
	# Basic Config - Required
	'auth_username'	=> 	'josh',
	'auth_password' =>	'b433481463f6ebda8d77f01f63324db4',

	# Optional Config - Please see README before setting these
#	'microid'	=>	array('user@site.com', 'http://delegator.url'),
#	'pavatar'	=>	'http://your.site.com/path/pavatar.img',

	# Advanced Config - Please see README before setting these
#	'allow_gmp'	=>	false,
	'allow_test'	=> 	false,
	'auth_realm'	=>	'6bit OpenID',
#	'force_bigmath'	=>	false,
#	'idp_url'	=>	'http://your.site.com/path/MyID.config.php',
#	'lifetime'	=>	1440,
	'paranoid'	=>	false, # EXPERIMENTAL

	# Debug Config - Please see README before setting these
	'debug'		=>	false,
	'logfile'	=>	'/home/joshperry/6bit.com/josh/phpMyID.debug.log',
	'allow_suhosin' =>	true,
);

/**
 * Simple Registration Extension
 * @name $sreg
 * @global array $GLOBALS['sreg']
 */
$GLOBALS['sreg'] = array (
	'nickname'		=> 'joshperry',
	'email'			=> 'josh@6bit.com',
	'fullname'		=> 'Josh Perry',
#	'dob'			=> '1970-10-31',
	'gender'		=> 'M',
#	'postcode'		=> '22000',
	'country'		=> 'US',
	'language'		=> 'en',
	'timezone'		=> 'America/Shiprock'
);

require('MyID.php');
?>
