diff options
author | Matthias Fechner <mfechner@FreeBSD.org> | 2020-04-19 09:01:41 +0000 |
---|---|---|
committer | Matthias Fechner <mfechner@FreeBSD.org> | 2020-04-19 09:01:41 +0000 |
commit | 2e2636e29263a51856a9ff5d7c11ef1ac2b435a1 (patch) | |
tree | 7fd5e478420cafe51b35ee346d225fa0b2a28aca /www | |
parent | 740d3d0e830075f8438b00693af54edf7a2cf60d (diff) |
Notes
Diffstat (limited to 'www')
-rw-r--r-- | www/bacula-web/files/patch-application_config_config.php.sample | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/www/bacula-web/files/patch-application_config_config.php.sample b/www/bacula-web/files/patch-application_config_config.php.sample new file mode 100644 index 000000000000..47e0d73ebcc0 --- /dev/null +++ b/www/bacula-web/files/patch-application_config_config.php.sample @@ -0,0 +1,21 @@ +--- application/config/config.php.sample.orig 2020-04-17 09:56:28 UTC ++++ application/config/config.php.sample +@@ -53,13 +53,13 @@ $config['language'] = 'en_US'; + // $config[0]['db_port'] = '3306'; + + // postgreSQL bacula catalog +-// $config[0]['label'] = 'Prod Server'; ++$config[0]['label'] = 'Prod Server'; + // $config[0]['host'] = 'db-server.domain.com'; +-// $config[0]['login'] = 'bacula'; ++$config[0]['login'] = 'bacula'; + // $config[0]['password'] = 'otherstrongpassword'; +-// $config[0]['db_name'] = 'bacula'; +-// $config[0]['db_type'] = 'pgsql'; +-// $config[0]['db_port'] = '5432'; ++$config[0]['db_name'] = 'bacula'; ++$config[0]['db_type'] = 'pgsql'; ++$config[0]['db_port'] = '5432'; + + // SQLite bacula catalog + // $config[0]['label'] = 'Dev backup server'; |