You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
352 B

5 years ago
<?php
$CONF['CLAIM']['SECRET'] = "SECRET_KEY_1234567890";
$CONF['CLAIM']['ISSUER'] = "http://rest.local";
$CONF['CLAIM']['AUDIENCE'] = "http://rest.local";
$CONF['CLAIM']['ISSUE_DATE'] = time();
$CONF['CLAIM']['NOT_BEFORE'] = $CONF['CLAIM']['ISSUE_DATE'] + 10;
$CONF['CLAIM']['EXPIRE'] = $CONF['CLAIM']['ISSUE_DATE'] + 60000;
?>