Initial commit
Well, here we are. New set of scripts that is meant to improve security of my machines by using an unique SSH key per host and not to carry them using .dotfile synchronisation. Might be even less secure than before if there are any flaw, that's why I kept this repository secret for now.
This commit is contained in:
commit
931a6ae2b3
5 changed files with 988 additions and 0 deletions
11
config.inc.php.example
Normal file
11
config.inc.php.example
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
$DOMAIN = 'machines.frogeye.fr';
|
||||
$TOTP = new TOTP(
|
||||
'newcommer@machines.frogeye.fr', // The label (string)
|
||||
'EUPJMTU6M7XPHG5P', // The secret encoded in base 32 (string)
|
||||
10, // The period (int)
|
||||
'sha512', // The digest algorithm (string)
|
||||
8 // The number of digits (int)
|
||||
);
|
||||
$TOTP->setIssuer('Machines Frogeye');
|
||||
?>
|
Reference in a new issue