代码拉取完成,页面将自动刷新
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2025 The Cacti Group |
| |
| 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. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDtool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
/*
* Make sure these values reflect your actual database/host/user/password
*/
$database_type = 'mysql';
$database_default = 'cacti';
$database_hostname = 'localhost';
$database_username = 'cactiuser';
$database_password = 'cactiuser';
$database_port = '3306';
$database_retries = 5;
$database_ssl = false;
$database_ssl_key = '';
$database_ssl_cert = '';
$database_ssl_ca = '';
$database_ssl_capath = '';
$database_ssl_verify_server_cert = true;
$database_persist = false;
/*
* When the cacti server is a remote poller, then these entries point to
* the main cacti server. Otherwise, these variables have no use and
* must remain commented out.
*/
#$rdatabase_type = 'mysql';
#$rdatabase_default = 'cacti';
#$rdatabase_hostname = 'localhost';
#$rdatabase_username = 'cactiuser';
#$rdatabase_password = 'cactiuser';
#$rdatabase_port = '3306';
#$rdatabase_retries = 5;
#$rdatabase_ssl = false;
#$rdatabase_ssl_key = '';
#$rdatabase_ssl_cert = '';
#$rdatabase_ssl_ca = '';
#$rdatabase_ssl_capath = '';
#$rdatabase_ssl_verify_server_cert = true;
/*
* The poller_id of this system. set to `1` for the main cacti web server.
* Otherwise, you this value should be the poller_id for the remote poller.
*/
$poller_id = 1;
/*
* Set the $url_path to point to the default URL of your cacti install.
* For example if your cacti install as at `https://serverip/cacti/` this
* would be set to `/cacti/`.
*/
$url_path = '/cacti/';
/*
* Default session name - session name must contain alpha characters
*/
$cacti_session_name = 'Cacti';
if (isset($_COOKIE['CactiTab'])) {
$cacti_session_name = 'CactiTabId:' . $_COOKIE['CactiTab'];
}
/*
* Default Cookie domain - The cookie domain to be used for Cacti
*/
//$cacti_cookie_domain = 'cacti.net';
/*
* Save sessions to a database for load balancing
*/
$cacti_db_session = false;
/*
* Disable log rotation settings for packagers
*/
$disable_log_rotation = false;
/*
* Optional parameters to define scripts, resource, and rra paths. These
* variables become important when using remote poller installs when the
* scripts and resource files are not in the main Cacti web server path.
*/
//$scripts_path = '/var/www/html/cacti/scripts';
//$resource_path = '/var/www/html/cacti/resource/';
//$rra_path = '/var/www/html/cacti/rra/';
//$package_keys_path = '/etc/cacti/pki';
/*
* Optional parameter to define a data input whitelist command string. This
* whitelist file will help protect cacti from unauthorized changes to Cacti
* data input command string.
*/
//$input_whitelist = '/usr/local/etc/cacti/input_whitelist.json';
/*
* Optional parameter to give explicit path to PHP
*/
//$php_path = '/bin/php';
/*
* Optional parameter to disable the PHP SNMP extension. If not set, defaults
* to class_exists('SNMP').
*/
//$php_snmp_support = false;
/*
* Optional parameter to define the path of the csrf_secret.php path. This
* variable is for packagers who wish to specify an alternate location of
* the CRSF secret file.
*/
//$path_csrf_secret = '/usr/share/cacti/resource/csrf-secret.php';
/*
* The following are optional variables for debugging low level system
* functions that are generally only used by Cacti Developers to help
* identify potential issues in commonly used functions
*
* To use them, uncomment and the equivalent field will be set in the
* $config variable allowing for instant on but still allowing the
* ability to fine turn and turn them off.
*/
/*
* Debug the read_config_option program flow
*/
#if (!defined('DEBUG_READ_CONFIG_OPTION')) {
# define('DEBUG_READ_CONFIG_OPTION', true);
#}
/*
* Automatically suppress the DEBUG_READ_CONFIG_OPTION
*/
#if (!defined('DEBUG_READ_CONFIG_OPTION_DB_OPEN')) {
# define('DEBUG_READ_CONFIG_OPTION_DB_OPEN', true);
#}
/*
* Always write the SQL command to the cacti log file
*/
#if (!defined('DEBUG_SQL_CMD')) {
# define('DEBUG_SQL_CMD', true);
#}
/*
* Debug the flow of calls to the db_xxx functions that
* are defined in lib/database.php
*/
#if (!defined('DEBUG_SQL_FLOW')) {
# define('DEBUG_SQL_FLOW', true);
#}
/**
* Debug the connect and disconnect activity
* and the first execute from each connection
* to the PHP error_log.
*/
#if (!defined('DEBUG_SQL_CONNECT')) {
# define('DEBUG_SQL_CONNECT', true);
#}
/**
* Allow the use of Proxy IPs when searching for client
* IP to be used
*
* This can be set to one of the following:
* - false: to use only REMOTE_ADDR
* - true: to use all allowed headers (not advised)
* - array of one or more the following:
* 'X-Forwarded-For',
* 'X-Client-IP',
* 'X-Real-IP',
* 'X-ProxyUser-Ip',
* 'CF-Connecting-IP',
* 'True-Client-IP',
* 'HTTP_X_FORWARDED',
* 'HTTP_X_FORWARDED_FOR',
* 'HTTP_X_CLUSTER_CLIENT_IP',
* 'HTTP_FORWARDED_FOR',
* 'HTTP_FORWARDED',
* 'HTTP_CLIENT_IP',
*
* NOTE: The following will always be checked:
* 'REMOTE_ADDR',
*/
$proxy_headers = null;
/*
* Set this to define the default i18n handler if not set
* in the database. For valid values, see CACTI_LANGUAGE_HANDLER
* constants but only use the value not the constant name
* here because we have not included global_constants.php
* yet
*/
$i18n_handler = null;
/*
* Set this to define ignore everything else and force a
* specific language. Should be in the format of a string
* such as 'es-ES'
*/
$i18n_force_language = null;
/**
* Define the location to log general i18n function calls
* to for debugging purposes. Note that if you use /tmp
* some systemd systems will remap that folder to special
* locations under /tmp/systemd<uniqueid>/tmp
*/
$i18n_log = null;
/**
* Define the location to log translation i18n function calls
* to for debugging purposes. Note that if you use /tmp
* some systemd systems will remap that folder to special
* locations under /tmp/systemd<uniqueid>/tmp
*/
$i18n_text_log = null;
/**
* Define the array of IP addresses whitelisted for
* remote agent communication.
*
* Example:
*
* $remote_agent_whitelist = ['1.2.3.4'];
*
*/
$remote_agent_whitelist = array();
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。