17 lines
433 B
PHP
17 lines
433 B
PHP
<?php
|
||
/*
|
||
* FILE: 01_contants.php
|
||
* Description: Support functions that can be used across the app
|
||
*/
|
||
|
||
|
||
$repoDir = "/ExtraSpace/admin.growfit.fi/tech";
|
||
$passwordFile = __DIR__ . '/passwords.json.enc'; // Encrypted JSON file
|
||
/*
|
||
| Encryption key (32+ random chars is best).
|
||
| - Leave empty ("") if you’re happy with **plain-text** storage.
|
||
| - Change it to rotate keys; old file becomes unreadable.
|
||
*/
|
||
$passwordKey = "";
|
||
?>
|