From b591db2411af9147c9df3767ae3bd6d28fa05ef9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 15 Jan 2018 18:13:56 +0100 Subject: [PATCH] Properly ignore config file. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .gitignore | 1 + includes/config.php | 27 --------------------------- 2 files changed, 1 insertion(+), 27 deletions(-) create mode 100644 .gitignore delete mode 100644 includes/config.php diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..355c251 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +includes/config.php diff --git a/includes/config.php b/includes/config.php deleted file mode 100644 index ef215ae..0000000 --- a/includes/config.php +++ /dev/null @@ -1,27 +0,0 @@ - 'http://localhost/~fraggle/airpolytech', - 'host' => 'localhost', - 'username' => 'fraggle', - 'password' => '$Love79!', - 'database' => 'bdVols', - 'actions' => array( - 'home', - 'login', - 'logout', - 'register', - 'booking', - 'search', - 'account' - ) - ); - - /* return array( - 'host' => $_SERVER['dbHost'], - 'username' => $_SERVER['dbLogin'], - 'password' => $_SERVER['dbPass'], - 'database' => '$_SERVER['dbBd']' - ); */ - -?> -- 2.34.1