summaryrefslogtreecommitdiffstats
path: root/frontends/php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-03-31 08:26:49 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-03-31 08:26:49 +0000
commited68e5fe0c92a2a620df0116f28c6ef7ceea8df4 (patch)
tree3e5689bacced507899a540cb8f5d1c4453c5dbe7 /frontends/php
parent9014efd25c407f7585a1ff179dad049a86b44887 (diff)
downloadzabbix-ed68e5fe0c92a2a620df0116f28c6ef7ceea8df4.tar.gz
zabbix-ed68e5fe0c92a2a620df0116f28c6ef7ceea8df4.tar.xz
zabbix-ed68e5fe0c92a2a620df0116f28c6ef7ceea8df4.zip
- rm zabbix.conf.php
git-svn-id: svn://svn.zabbix.com/trunk@5562 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php')
-rw-r--r--frontends/php/conf/zabbix.conf.php77
1 files changed, 0 insertions, 77 deletions
diff --git a/frontends/php/conf/zabbix.conf.php b/frontends/php/conf/zabbix.conf.php
deleted file mode 100644
index c03f7aba..00000000
--- a/frontends/php/conf/zabbix.conf.php
+++ /dev/null
@@ -1,77 +0,0 @@
-<?php
-/*
-** ZABBIX
-** Copyright (C) 2000-2005 SIA Zabbix
-**
-** 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 2 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, write to the Free Software
-** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-**/
-
-global $DB_TYPE, $DB_SERVER, $DB_PORT, $DB_DATABASE, $DB_USER, $DB_PASSWORD, $IMAGE_FORMAT_DEFAULT, $ZBX_SERVER, $ZBX_SERVER_PORT;
-
-
-// MYSQL
-//*
-$DB_TYPE = "MYSQL";
-$DB_SERVER = "192.168.3.4";
-$DB_PORT = "0";
-$DB_DATABASE = "aly";
-$DB_USER = "root";
-$DB_PASSWORD = "";
-//*/
-
-/*
-$DB_TYPE = "MYSQL";
-$DB_SERVER = "localhost";
-$DB_PORT = "0";
-$DB_DATABASE = "zabbix";
-$DB_USER = "admin";
-$DB_PASSWORD = "Xpoint1";
-//*/
-
-
-// POSTGERESQL
-/*
-$DB_TYPE = "POSTGRESQL";
-$DB_SERVER = "127.0.0.1";
-$DB_PORT = "0";
-$DB_DATABASE = "zabbix";
-$DB_USER = "admin";
-$DB_PASSWORD = "Xpoint1";
-//*/
-
-/*
-$DB_TYPE = "POSTGRESQL";
-$DB_SERVER = "192.168.3.2";
-$DB_PORT = "0";
-$DB_DATABASE = "aly";
-$DB_USER = "artem";
-$DB_PASSWORD = "artem";
-//*/
-
-// ORACLE
-/*
-$DB_TYPE = "ORACLE";
-$DB_SERVER = "localhost";
-$DB_PORT = "1521";
-$DB_DATABASE = "localhost";
-$DB_USER = "zabbix";
-$DB_PASSWORD = "zabbix";
-$ZBX_SERVER = "192.168.3.4";
-$ZBX_SERVER_PORT = "31055";
-//*/
-
-
-$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
-?> \ No newline at end of file