1<?php
2/* global settings */
3
4$use_js=true; // use javascript for the HTML toolkits
5
6// Maximum URL length to display in URI table column
7DEFINE("SQSTAT_SHOWLEN",60);
8
9
10/* proxy settings */
11
12/* Squid proxy server ip address or host name */
13$squidhost[0]="127.0.0.1";
14/* Squid proxy server port */
15$squidport[0]=3128;
16/* cachemgr_passwd in squid.conf. Leave blank to disable authorisation */
17$cachemgr_passwd[0]="";
18/* Resolve user IP addresses or print them as numbers only [true|false] */
19$resolveip[0]=false;
20/* uncomment next line if you want to use hosts-like file.
21   See hosts.txt.dist. */
22// $hosts_file[0]="hosts.txt"
23/* Group users by hostname - "host" or by User - "username". Username work only
24   with squid 2.6+ */
25$group_by[0]="host";
26
27/* you can specify more than one proxy in the configuration file, e.g.: */
28// $squidhost[1]="192.168.0.2";
29// $squidport[1]=3129;
30// $cachemgr_passwd[1]="secret";
31// $resolveip[1]=true;
32// $hosts_file[1]="otherhosts.txt"
33
34
35
36?>
37