From eff4ed40743ea8219bd92df81a1da4b4569bf489 Mon Sep 17 00:00:00 2001 From: Roman Bazalevsky <rvb@rvb.name> Date: Mon, 16 Dec 2019 12:37:34 +0300 Subject: [PATCH] Sanitized config added. --- web/config.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 web/config.php diff --git a/web/config.php b/web/config.php new file mode 100644 index 0000000..d99aa4c --- /dev/null +++ b/web/config.php @@ -0,0 +1,19 @@ +<?php + + $mysql_host = 'MYSQL HOST'; + $mysql_schema = 'squid'; + $mysql_user = 'squid'; + $mysql_pwd = 'MYSQL PASSWD'; + $mysql_port = 3306; + + setlocale(LC_ALL,'ru_RU.UTF8'); + + $site_header = 'Squid transparent proxy reports'; + + $squid_host = 'SQUID HOST'; + $squid_port = 3128; + + $online_refresh = 1000; + $online_history = 120; + +?> -- 2.34.1