lockbox-web/config/env.example.php

16 lines
389 B
PHP
Raw Normal View History

2020-12-07 22:30:01 +00:00
<?php
$conf_vars = [
'LB_DL_PASS' => '',
'LB_FILE' => '/var/www/data/lockbox.dat', // This is the submissions file -- it should not be in your web directory!!!
2020-12-17 00:14:54 +00:00
'LB_PUBKEY_FILE' => '/var/www/html/key.public' // Absolute parth of public key file
2020-12-07 22:30:01 +00:00
];
// restrict the (optional) admin form to these IPs
$ips = array(
/* "127.0.0.1",
"192.168.0.0",
"172.16.0.0" */
);
?>