]> 91.132.146.200 Git - emere.git/commitdiff
default config
authorJohannes Keßler <johannes.kessler@bechtle.com>
Fri, 2 Sep 2022 20:40:34 +0000 (22:40 +0200)
committerJohannes Keßler <johannes.kessler@bechtle.com>
Fri, 2 Sep 2022 20:40:34 +0000 (22:40 +0200)
webroot/config/.gitignore [new file with mode: 0644]
webroot/config/config.php
webroot/config/config.php.default [new file with mode: 0644]

diff --git a/webroot/config/.gitignore b/webroot/config/.gitignore
new file mode 100644 (file)
index 0000000..4f4773f
--- /dev/null
@@ -0,0 +1 @@
+config.php
index e2943a6f65dfc54d7310961c6f44e40a4b71b9e0..5c2823838a8e8c493004d8f057c0bc0cc1555fb1 100644 (file)
@@ -33,8 +33,8 @@ const PATH_LOGDIRECTORY = PATH_ABSOLUTE . '/log';
 const DB_HOST = '127.0.0.1';
 const DB_USERNAME = 'user';
 const DB_PASSWORD = 'test';
-const DB_NAME = 'bibliotheca';
-const DB_PREFIX = 'bib'; # a _ is added automatically as separation
+const DB_NAME = 'emere';
+const DB_PREFIX = 'emere'; # a _ is added automatically as separation
 
 # session
 const SESSION_LIFETIME = 43200; // 8 hours
diff --git a/webroot/config/config.php.default b/webroot/config/config.php.default
new file mode 100644 (file)
index 0000000..5c28238
--- /dev/null
@@ -0,0 +1,42 @@
+<?php
+/**
+ * emere
+ *
+ * Copyright (C) 2022  Johannes 'Banana' Keßler
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ */
+# set to true if you need debug messages in error log file
+const DEBUG = true;
+# set to ture if you need query log messages in error log file.
+const QUERY_DEBUG = true;
+
+# timezone settings
+const TIMEZONE = 'Europe/Berlin';
+
+# path settings
+const PATH_ABSOLUTE = '/home/some/path/emere/';
+const PATH_LOGDIRECTORY = PATH_ABSOLUTE . '/log';
+
+# database config
+const DB_HOST = '127.0.0.1';
+const DB_USERNAME = 'user';
+const DB_PASSWORD = 'test';
+const DB_NAME = 'emere';
+const DB_PREFIX = 'emere'; # a _ is added automatically as separation
+
+# session
+const SESSION_LIFETIME = 43200; // 8 hours
+const SESSION_NAME = "emere-session";
+const SESSION_SAVE_PATH = PATH_LOGDIRECTORY . '/session';