]> 91.132.146.200 Git - emere.git/commitdiff
removed
authorJohannes Keßler <johannes.kessler@bechtle.com>
Fri, 2 Sep 2022 20:41:16 +0000 (22:41 +0200)
committerJohannes Keßler <johannes.kessler@bechtle.com>
Fri, 2 Sep 2022 20:41:16 +0000 (22:41 +0200)
webroot/config/config.php [deleted file]

diff --git a/webroot/config/config.php b/webroot/config/config.php
deleted file mode 100644 (file)
index 5c28238..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-<?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';