Sanitized config added.
authorRoman Bazalevsky <rvb@rvb.name>
Mon, 16 Dec 2019 09:37:34 +0000 (12:37 +0300)
committerRoman Bazalevsky <rvb@rvb.name>
Mon, 16 Dec 2019 09:37:34 +0000 (12:37 +0300)
web/config.php [new file with mode: 0644]

diff --git a/web/config.php b/web/config.php
new file mode 100644 (file)
index 0000000..d99aa4c
--- /dev/null
@@ -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;  
+
+?>