From: Roman Bazalevsky <rvb@rvb.name> Date: Mon, 16 Dec 2019 09:37:34 +0000 (+0300) Subject: Sanitized config added. X-Git-Url: https://git.rvb.name/squid-reports.git/commitdiff_plain/eff4ed40743ea8219bd92df81a1da4b4569bf489?hp=823133accebdf5f40aff0d1807389438a053423c Sanitized config added. --- 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; + +?>