]> git.sur5r.net Git - bacula/bacula/commitdiff
bacula-web: Renammed config filename and updated gitignore file
authorDavide Franco <bacula-dev@dflc.ch>
Thu, 2 Jun 2011 11:38:13 +0000 (13:38 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:49:12 +0000 (14:49 +0200)
 - updated content of config.php.sample
 - updated content of gitignore which exclude now config/config.php also

gui/bacula-web/.gitignore
gui/bacula-web/config/config.php [deleted file]
gui/bacula-web/config/config.php.sample [new file with mode: 0644]

index a27989e2c1330f7ce41d18dddd20da868eeb4351..df1c19b7c4de9d7e79c523873d9df1adac400c9f 100644 (file)
@@ -1,2 +1,3 @@
-*.php
-*.png
+/templates_c/*.php
+/templates_c/*.png
+/config/config.php
diff --git a/gui/bacula-web/config/config.php b/gui/bacula-web/config/config.php
deleted file mode 100644 (file)
index d27214a..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-<?php
-
- /* Language
- en_EN -> English
- es_ES -> Spanish, Mantained by Juan Luis Francés Jiménez.
- it_IT -> Italian, Mantained by Gian Domenico Messina (gianni.messina AT c-ict.it).
- fr_FR -> Frech, Mantained by Morgan LEFIEUX (comete AT daknet.org).
- de_DE -> German, Mantained by Florian Heigl.
- */
- $config['language'] = 'en_EN';
-
- //MySQL bacula catalog
- $config[0]['label'] = 'Backup/mysql';
- $config[0]['host'] = 'localhost';
- $config[0]['login'] = 'root';
- $config[0]['password'] = 'p@ssw0rd';
- $config[0]['db_name'] = 'bacula';
- $config[0]['db_type'] = 'mysql';
- $config[0]['db_port'] = '3306';
-  //MySQL bacula catalog
- $config[1]['label'] = 'Backup/pgsql';
- $config[1]['host'] = 'localhost';
- $config[1]['login'] = 'bacula';
- $config[1]['password'] = 'bacula';
- $config[1]['db_name'] = 'bacula';
- $config[1]['db_type'] = 'pgsql';
- $config[1]['db_port'] = '5432';
- /* Catalog(s) connection parameters
- Just copy/paste and modify regarding your configuration
-
- Example: 
- //MySQL bacula catalog
- $config[0]['label'] = 'Backup Server';
- $config[0]['host'] = 'localhost';
- $config[0]['login'] = 'bacula';
- $config[0]['password'] = 'verystrongpassword';
- $config[0]['db_name'] = 'bacula';
- $config[0]['db_type'] = 'mysql';
- $config[0]['db_port'] = '3306';
-
- // PostgreSQL bacula catalog
- $config[0]['label'] = 'Prod Server';
- $config[0]['host'] = 'db-server.domain.com';
- $config[0]['login'] = 'bacula';
- $config[0]['password'] = 'otherstrongpassword';
- $config[0]['db_name'] = 'bacula';
- $config[0]['db_type'] = 'pgsql';
- $config[0]['db_port'] = '5432'; 
- // SQLite bacula catalog
- $config[0]['label'] = 'Dev backup server';
- $config[0]['db_path'] = '/path/to/database/db.sdb';
-
- If you want to configure more than one catalog in Bacula-Web, just copy the first parameters and increment by one the index
-
-  //MySQL bacula catalog
- $config[1]['label'] = 'Dev backup server';
- $config[1]['host'] = 'mysql-server.domain.net';
- $config[1]['login'] = 'bacula';
- $config[1]['password'] = 'verystrongpassword';
- $config[1]['db_name'] = 'bacula';
- $config[1]['db_type'] = 'mysql';
- $config[1]['db_port'] = '3306';
- */
-?>
diff --git a/gui/bacula-web/config/config.php.sample b/gui/bacula-web/config/config.php.sample
new file mode 100644 (file)
index 0000000..ddddd52
--- /dev/null
@@ -0,0 +1,51 @@
+<?php
+
+ /* Language
+ en_EN -> English
+ es_ES -> Spanish, Mantained by Juan Luis Francés Jiménez.
+ it_IT -> Italian, Mantained by Gian Domenico Messina (gianni.messina AT c-ict.it).
+ fr_FR -> Frech, Mantained by Morgan LEFIEUX (comete AT daknet.org).
+ de_DE -> German, Mantained by Florian Heigl.
+ */
+ $config['language'] = 'en_EN';
+
+ /* Catalog(s) connection parameters
+ Just copy/paste and modify regarding your configuration
+
+ Example: 
+ //MySQL bacula catalog
+ $config[0]['label'] = 'Backup Server';
+ $config[0]['host'] = 'localhost';
+ $config[0]['login'] = 'bacula';
+ $config[0]['password'] = 'verystrongpassword';
+ $config[0]['db_name'] = 'bacula';
+ $config[0]['db_type'] = 'mysql';
+ $config[0]['db_port'] = '3306';
+
+ // PostgreSQL bacula catalog
+ $config[0]['label'] = 'Prod Server';
+ $config[0]['host'] = 'db-server.domain.com';
+ $config[0]['login'] = 'bacula';
+ $config[0]['password'] = 'otherstrongpassword';
+ $config[0]['db_name'] = 'bacula';
+ $config[0]['db_type'] = 'pgsql';
+ $config[0]['db_port'] = '5432'; 
+ // SQLite bacula catalog
+ $config[0]['label'] = 'Dev backup server';
+ $config[0]['db_path'] = '/path/to/database/db.sdb';
+
+ If you want to configure more than one catalog in Bacula-Web, just copy the first parameters and increment by one the index
+
+  //MySQL bacula catalog
+ $config[1]['label'] = 'Dev backup server';
+ $config[1]['host'] = 'mysql-server.domain.net';
+ $config[1]['login'] = 'bacula';
+ $config[1]['password'] = 'verystrongpassword';
+ $config[1]['db_name'] = 'bacula';
+ $config[1]['db_type'] = 'mysql';
+ $config[1]['db_port'] = '3306';
+ */
+?>