aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/conf/config.php
diff options
context:
space:
mode:
authorPim van den Berg2014-08-10 14:36:23 +0200
committerPim van den Berg2014-08-10 14:36:23 +0200
commit9d27dfc35d1890877d9f18cfa2c6e75ba0720fdf (patch)
treecb3b7032aba48b52203163aad0bf4683e54476cb /conf/config.php
parentjsrrdgraph: Fix parsing of rrdfiles containing escapes (diff)
parentSupport customized RRD URLs (diff)
downloadapt-panopticon_cgp-9d27dfc35d1890877d9f18cfa2c6e75ba0720fdf.zip
apt-panopticon_cgp-9d27dfc35d1890877d9f18cfa2c6e75ba0720fdf.tar.gz
apt-panopticon_cgp-9d27dfc35d1890877d9f18cfa2c6e75ba0720fdf.tar.bz2
apt-panopticon_cgp-9d27dfc35d1890877d9f18cfa2c6e75ba0720fdf.tar.xz
Merge remote-tracking branch 'lekensteyn/custom-urls'
Diffstat (limited to 'conf/config.php')
-rw-r--r--conf/config.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/conf/config.php b/conf/config.php
index 66b5d0e..157012a 100644
--- a/conf/config.php
+++ b/conf/config.php
@@ -65,6 +65,11 @@ $CONFIG['graph_smooth'] = false;
65# draw min/max spikes in a lighter color in graphs with type default 65# draw min/max spikes in a lighter color in graphs with type default
66$CONFIG['graph_minmax'] = false; 66$CONFIG['graph_minmax'] = false;
67 67
68# The URL that provides RRD files for the "canvas" graph type. Examples:
69# 'rrd/{file}' is replaced by 'rrd/example.com/load/load.rrd'
70# 'rrd.php?path={file_escaped}' becomes 'rrd.php?path=host%3Fload%3Fload.rrd'
71$CONFIG['rrd_url'] = 'rrd.php?path={file_escaped}';
72
68# browser cache time for the graphs (in seconds) 73# browser cache time for the graphs (in seconds)
69$CONFIG['cache'] = 90; 74$CONFIG['cache'] = 90;
70 75