projects
/
squid-reports.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
823133a
)
Sanitized config added.
author
Roman Bazalevsky
<rvb@rvb.name>
Mon, 16 Dec 2019 09:37:34 +0000
(12:37 +0300)
committer
Roman Bazalevsky
<rvb@rvb.name>
Mon, 16 Dec 2019 09:37:34 +0000
(12:37 +0300)
web/config.php
[new file with mode: 0644]
patch
|
blob
diff --git a/web/config.php
b/web/config.php
new file mode 100644
(file)
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;
+
+?>