root/alternc-awstats/tags/0.5.1/awstats.alternc.generic.conf

Revision 1859, 57.3 kB (checked in by pierre-gilles, 1 year ago)

Change the way we include the local configuration file to see it working on perl 5.6

Line 
1 # AWSTATS CONFIGURE FILE 6.4
2 #-----------------------------------------------------------------------------
3 # Copy this file into awstats.www.mydomain.conf and edit this new config file
4 # to setup AWStats (See documentation in docs/ directory).
5 # The config file must be in /etc/awstats, /usr/local/etc/awstats or /etc (for
6 # Unix/Linux) or same directory than awstats.pl (Windows, Mac, Unix/Linux...)
7 # To include an environment variable in any parameter (AWStats will replace
8 # it with its value when reading it), follow the example:
9 # Parameter="__ENVNAME__"
10 # Note that environment variable AWSTATS_CURRENT_CONFIG is always defined with
11 # the config value in an AWStats running session and can be used like others.
12 #-----------------------------------------------------------------------------
13 # $Revision: 1.310 $ - $Author: eldy $ - $Date: 2005/02/24 21:08:40 $
14
15
16
17 #-----------------------------------------------------------------------------
18 # MAIN SETUP SECTION (Required to make AWStats work)
19 #-----------------------------------------------------------------------------
20
21 # "LogFile" contains the web, ftp or mail server log file to analyze.
22 # Possible values: A full path, or a relative path from awstats.pl directory.
23 # Example: "/var/log/apache/access.log"
24 # Example: "../logs/mycombinedlog.log"
25 # You can also use tags in this filename if you need a dynamic file name
26 # depending on date or time (Replacement is made by AWStats at the beginning
27 # of its execution). This is available tags :
28 #   %YYYY-n  is replaced with 4 digits year we were n hours ago
29 #   %YY-n    is replaced with 2 digits year we were n hours ago
30 #   %MM-n    is replaced with 2 digits month we were n hours ago
31 #   %MO-n    is replaced with 3 letters month we were n hours ago
32 #   %DD-n    is replaced with day we were n hours ago
33 #   %HH-n    is replaced with hour we were n hours ago
34 #   %NS-n    is replaced with number of seconds at 00:00 since 1970
35 #   %WM-n    is replaced with the week number in month (1-5)
36 #   %Wm-n    is replaced with the week number in month (0-4)
37 #   %WY-n    is replaced with the week number in year (01-52)
38 #   %Wy-n    is replaced with the week number in year (00-51)
39 #   %DW-n    is replaced with the day number in week (1-7, 1=sunday)
40 #                              use n=24 if you need (1-7, 1=monday)
41 #   %Dw-n    is replaced with the day number in week (0-6, 0=sunday)
42 #                              use n=24 if you need (0-6, 0=monday)
43 #   Use 0 for n if you need current year, month, day, hour...
44 # Example: "/var/log/access_log.%YYYY-0%MM-0%DD-0.log"
45 # Example: "C:/WINNT/system32/LogFiles/W3SVC1/ex%YY-24%MM-24%DD-24.log"
46 # You can also use a pipe if log file come from a pipe :
47 # Example: "gzip -d </var/log/apache/access.log.gz |"
48 # If there is several log files from load balancing servers :
49 # Example: "/pathtotools/logresolvemerge.pl *.log |"
50 #
51 LogFile="/var/log/apache/access.log"
52
53
54 # Enter the log file type you want to analyze.
55 # Possible values:
56 #  W - For a web log file
57 #  S - For a streaming log file
58 #  M - For a mail log file
59 #  F - For a ftp log file
60 # Example: W
61 # Default: W
62 #
63 LogType=W
64
65
66 # Enter here your log format (Must match your web server config. See setup
67 # instructions in documentation to know how to configure your web server to
68 # have the required log format).
69 # Possible values: 1,2,3,4 or "your_own_personalized_log_format"
70 # 1 - Apache or Lotus Notes/Domino native combined log format (NCSA combined/XLF/ELF log format)
71 # 2 - Old IIS log format (IIS W3C log format). See FAQ for IIS 6.x.
72 # 3 - Webstar native log format.
73 # 4 - Apache or Squid native common log format (NCSA common/CLF log format)
74 #     With LogFormat=4, some features (browsers, os, keywords...) can't work.
75 # "your_own_personalized_log_format" = If your log is ftp, mail or other format,
76 #     you must use following keys to define the log format string (See FAQ
77 #     for ftp, mail or exotic web log format examples):
78 #   %host             Host client name or IP address
79 #   %lognamequot      Authenticated login/user with format: "john"
80 #   %logname          Authenticated login/user with format: john
81 #   %time1            Date and time with format: [dd/mon/yyyy:hh:mm:ss +0000] or [dd/mon/yyyy:hh:mm:ss]
82 #   %time2            Date and time with format: yyyy-mm-dd hh:mm:ss
83 #   %time3            Date and time with format: Mon dd hh:mm:ss or Mon dd hh:mm:ss yyyy
84 #   %time4            Date and time with unix timestamp format: dddddddddd
85 #   %methodurl        Method and URL with format: "GET /index.html HTTP/x.x"
86 #   %methodurlnoprot  Method and URL with format: "GET /index.html"
87 #   %method           Method with format: GET
88 #   %url              URL only with format: /index.html
89 #   %query            Query string (used by URLWithQuery option)
90 #   %code             Return code status (with format for web log: 999)
91 #   %bytesd           Size of document in bytes
92 #   %refererquot      Referer page with format: "http://from.com/from.htm"
93 #   %referer          Referer page with format: http://from.com/from.htm
94 #   %uabracket        User agent with format: [Mozilla/4.0 (compatible, ...)]
95 #   %uaquot           User agent with format: "Mozilla/4.0 (compatible, ...)"
96 #   %ua               User agent with format: Mozilla/4.0_(compatible...)
97 #   %gzipin           mod_gzip compression input bytes: In:XXX
98 #   %gzipout          mod_gzip compression output bytes & ratio: Out:YYY:ZZpct.
99 #   %gzipratio        mod_gzip compression ratio: ZZpct.
100 #   %deflateratio     mod_deflate compression ratio with format: (ZZ)
101 #   %email            EMail sender (for mail log)
102 #   %email_r          EMail receiver (for mail log)
103 #   %virtualname      Web sever virtual hostname. Use this tag when same log
104 #                     contains data of several virtual web servers. AWStats
105 #                     will discard records not in SiteDomain nor HostAliases
106 #   %cluster          If log file is provided from several computers (merged by
107 #                     logresolvemerge.pl), use this to define cluster id field.
108 #   %extraX           Another field that you plan to use for building a
109 #                     personalized report with ExtraSection feature (See later).
110 #   If your log format has some fields not included in this list, use:
111 #   %other            Means another not used field
112 #   %otherquot        Means another not used double quoted field
113 #
114 # Examples for Apache combined logs (following two examples are equivalent):
115 # LogFormat = 1
116 # LogFormat = "%host %other %logname %time1 %methodurl %code %bytesd %refererquot %uaquot"
117 #
118 #LogFormat=1
119 LogFormat="%host %other %logname %time1 %methodurl %code %bytesd %refererquot %uaquot %other %virtualname"
120
121 # If your log field's separator is not a space, you can change this parameter.
122 # This parameter is not used if LogFormat is a predefined value (1,2,3,4)
123 # Backslash can be used as escape character.
124 # Example: " "
125 # Example: "\t"
126 # Example: "\|"
127 # Default: " "
128 #
129 LogSeparator=" "
130
131
132 # "SiteDomain" must contain the main domain name, or the main intranet web
133 # server name, used to reach the web site.
134 # If you share the same log file for several virtual web servers, this
135 # parameter is used to tell AWStats to filter record that contains records for
136 # this virtual host name only (So check that this virtual hostname can be
137 # found in your log file and use a personalized log format that include the
138 # %virtualname tag).
139 # But for multi hosting a better solution is to have one log file for each
140 # virtual web server. In this case, this parameter is only used to generate
141 # full URL's links when ShowLinksOnUrl option is set to 1.
142 # If analysing mail log, enter here the domain name of mail server.
143 # Example: "myintranetserver"
144 # Example: "www.domain.com"
145 # Example: "ftp.domain.com"
146 # Example: "domain.com"
147 #
148 # SiteDomain="" # Setup in the per host file
149
150
151 # Enter here all other possible domain names, addresses or virtual host
152 # aliases someone can use to access your site. Try to keep only the minimum
153 # number of possible names/addresses to have the best performances.
154 # You can repeat the "SiteDomain" value in this list.
155 # This parameter is used to analyze referer field in log file and to help
156 # AWStats to know if a referer URL is a local URL of same site or an URL of
157 # another site.
158 # Note: Use space between each value.
159 # Note: You can use regular expression values writing value with REGEX[value].
160 # Note: You can also use @/mypath/myfile if list of aliases are in a file.
161 # Example: "www.myserver.com localhost 127.0.0.1 REGEX[mydomain\.(net|org)$]"
162 #
163 # HostAliases="localhost 127.0.0.1" # Setup in the per host file
164
165
166 # If you want to have hosts reported by name instead of ip address, AWStats
167 # need to make reverse DNS lookups (if not already done in your log file).
168 # With DNSLookup to 0, all hosts will be reported by their IP addresses and
169 # not by the full hostname of visitors (except if names are already available
170 # in log file).
171 # If you want/need to set DNSLookup to 1, don't forget that this will reduce
172 # dramatically AWStats update process speed. Do not use on large web sites.
173 # Note: Reverse DNS lookup is done on IPv4 only (Enable ipv6 plugin for IPv6).
174 # Note: Result of DNS Lookup can be used to build the Country report. However
175 # it is highly recommanded to enable the plugin 'geoipfree' or 'geoip' to
176 # have an accurate Country report with no need of DNS Lookup.
177 # Possible values:
178 # 0 - No DNS Lookup
179 # 1 - DNS Lookup is fully enabled
180 # 2 - DNS Lookup is made only from static DNS cache file (if it exists)
181 # Default: 2
182 #
183 DNSLookup=1
184
185
186 # When AWStats updates its statistics, it stores results of its analysis in
187 # files (AWStats database). All those files are written in the directory
188 # defined by the "DirData" parameter. Set this value to the directory where
189 # you want AWStats to save its database and working files into.
190 # Warning: If you want to be able to use the "AllowToUpdateStatsFromBrowser"
191 # feature (see later), you need "Write" permissions by web server user on this
192 # directory (and "Modify" for Windows NTFS file systems).
193 # Example: "/var/lib/awstats"
194 # Example: "../data"
195 # Example: "C:/awstats_data_dir"
196 # Default: "."          (means same directory as awstats.pl)
197 #
198 # DirData="/var/lib/awstats"  # Setup in the per host file
199
200
201 # Relative or absolute web URL of your awstats cgi-bin directory.
202 # This parameter is used only when AWStats is run from command line
203 # with -output option (to generate links in HTML reported page).
204 # Example: "/awstats"
205 # Default: "/cgi-bin"   (means awstats.pl is in "/yourwwwroot/cgi-bin")
206 #
207 DirCgi="/cgi-bin"
208
209
210 # Relative or absolute web URL of your awstats icon directory.
211 # If you build static reports ("... -output > outputpath/output.html"), enter
212 # path of icon directory relative to the output directory 'outputpath'.
213 # Example: "/awstatsicons"
214 # Example: "../icon"
215 # Default: "/icon" (means you must copy icon directories in "/mywwwroot/icon")
216 #
217 DirIcons="/awstats-icon"
218
219
220 # When this parameter is set to 1, AWStats add a button on report page to
221 # allow to "update" statistics from a web browser. Warning, when "update" is
222 # made from a browser, AWStats is ran as a CGI by the web server user defined
223 # in your web server (user "nobody" by default with Apache, "IUSR_XXX" with
224 # IIS), so the "DirData" directory and all already existing history files
225 # awstatsMMYYYY[.xxx].txt must be writable by this user. Change permissions if
226 # necessary to "Read/Write" (and "Modify" for Windows NTFS file systems).
227 # Warning: Update process can be long so you might experience "time out"
228 # browser errors if you don't launch AWStats enough frequently.
229 # When set to 0, update is only made when AWStats is ran from the command
230 # line interface (or a task scheduler).
231 # Possible values: 0 or 1
232 # Default: 0
233 #
234 AllowToUpdateStatsFromBrowser=0
235
236
237 # AWStats save and sort its database on a month basis, this allows to build
238 # build a report quickly. However, if you choose the -month=all from command
239 # line or value '-Year-' from CGI combo form to have a report for all year,
240 # AWStats needs to reload all data for full year, and resort them completely,
241 # requiring a large amount of time, memory and CPU. This might be a problem
242 # for web hosting providers that offer AWStats for large sites, on shared
243 # servers, to non CPU cautious customers.
244 # For this reason, the 'full year' is only enabled on Command Line by default.
245 # You can change this by setting this parameter to 0, 1, 2 or 3.
246 # Possible values:
247 #  0 - Never allowed
248 #  1 - Allowed on CLI only, -Year- value in combo is not visible
249 #  2 - Allowed on CLI only, -Year- value in combo is visible but not allowed
250 #  3 - Possible on CLI and CGI
251 # Default: 2
252 #
253 AllowFullYearView=2
254
255
256
257 #-----------------------------------------------------------------------------
258 # OPTIONAL SETUP SECTION (Not required but increase AWStats features)
259 #-----------------------------------------------------------------------------
260
261 # When the update process run, AWStats can set a lock file in TEMP or TMP
262 # directory. This lock is to avoid to have 2 update processes running at the
263 # same time to prevent unknown conflicts problems and avoid DoS attacks when
264 # AllowToUpdateStatsFromBrowser is set to 1.
265 # Because, when you use lock file, you can experience sometimes problems in
266 # lock file not correctly removed (killed process for example requires that
267 # you remove the file manualy), this option is not enabled by default (Do
268 # not enable this option with no console server access).
269 # Change : Effective immediatly
270 # Possible values: 0 or 1
271 # Default: 0
272 #
273 EnableLockForUpdate=0
274
275
276 # AWStats can do reverse DNS lookups through a static DNS cache file that was
277 # previously created manually. If no path is given in static DNS cache file
278 # name, AWStats will search DirData directory. This file is never changed.
279 # This option is not used if DNSLookup=0.
280 # Note: DNS cache file format is 'minsince1970 ipaddress resolved_hostname'
281 # or just 'ipaddress resolved_hostname'
282 # Change : Effective for new updates only
283 # Example: "/mydnscachedir/dnscache"
284 # Default: "dnscache.txt"
285 #
286 DNSStaticCacheFile="dnscache.txt"
287
288
289 # AWStats can do reverse DNS lookups through a DNS cache file that was created
290 # by a previous run of AWStats. This file is erased and recreated after each
291 # statistics update process. You don't need to create and/or edit it.
292 # AWStats will read and save this file in DirData directory.
293 # This option is used only if DNSLookup=1.
294 # Note: If a DNSStaticCacheFile is available, AWStats will check for DNS
295 # lookup in DNSLastUpdateCacheFile after checking into DNSStaticCacheFile.
296 # Change : Effective for new updates only
297 # Example: "/mydnscachedir/dnscachelastupdate"
298 # Default: "dnscachelastupdate.txt"
299 #
300 DNSLastUpdateCacheFile="dnscachelastupdate.txt"
301
302
303 # You can specify specific IP addresses that should NOT be looked up in DNS.
304 # This option is used only if DNSLookup=1.
305 # Note: Use space between each value.
306 # Note: You can use regular expression values writing value with REGEX[value].
307 # Change : Effective for new updates only
308 # Example: "123.123.123.123 REGEX[^192\.168\.]"
309 # Default: ""
310 #
311 SkipDNSLookupFor=""
312
313
314 # The following two parameters allow you to protect a config file from being
315 # read by AWStats when called from a browser if web user has not been
316 # authenticated. Your AWStats program must be in a web protected "realm" (With
317 # Apache, you can use .htaccess files to do so. With other web servers, see
318 # your server setup manual).
319 # Change : Effective immediatly
320 # Possible values: 0 or 1
321 # Default: 0
322 #
323 #AllowAccessFromWebToAuthenticatedUsersOnly=1
324
325
326 # This parameter give the list of all authorized authenticated users to view
327 # statistics for this domain/config file. This parameter is used only if
328 # AllowAccessFromWebToAuthenticatedUsersOnly is set to 1.
329 # Change : Effective immediatly
330 # Example: "user1 user2"
331 # Example: "__REMOTE_USER__"
332 # Default: ""
333 #
334 # AllowAccessFromWebToFollowingAuthenticatedUsers="" # Setup in the per host file
335
336
337 # When this parameter is define to something, the IP address of the user that
338 # read its statistics from a browser (when AWStats is used as a CGI) is
339 # checked and must match one of the IP address values or ranges.
340 # Change : Effective immediatly
341 # Example: "127.0.0.1 123.123.123.1-123.123.123.255"
342 # Default: ""
343 #
344 AllowAccessFromWebToFollowingIPAddresses=""
345
346
347 # If the "DirData" directory (see above) does not exists, AWStats return an
348 # error. However, you can ask AWStats to create it.
349 # This option can be used by some Web Hosting Providers that has defined a
350 # dynamic value for DirData (for example DirData="/home/__REMOTE_USER__") and
351 # don't want to have to create a new directory each time they add a new user.
352 # Change : Effective immediatly
353 # Possible values: 0 or 1
354 # Default: 0
355 #
356 CreateDirDataIfNotExists=1
357
358
359 # You can choose in which format the Awstats history database is saved.
360 # Note: Using "xml" format make AWStats building database files three times
361 # larger than using "text" format.
362 # Change : Database format is switched after next update
363 # Possible values: text or xml
364 # Default: text
365 #
366 BuildHistoryFormat=text
367
368
369 # If you prefer having the report output pages be built as XML compliant pages
370 # instead of simple HTML pages, you can set this to 'xhtml' (May not works
371 # properly with old browsers).
372 # Change : Effective immediatly
373 # Possible values: html or xhtml
374 # Default: html
375 #
376 BuildReportFormat=html
377
378
379 # AWStats databases can be updated from command line of from a browser (when
380 # used as a cgi program). So AWStats database files need write permission
381 # for both command line user and default web server user (nobody for Unix,
382 # IUSR_xxx for IIS/Windows,...).
383 # To avoid permission's problems between update process (run by an admin user)
384 # and CGI process (ran by a low level user), AWStats can save its database
385 # files with read and write permissions for everyone.
386 # By default, AWStats keep default user permissions on updated files. If you
387 # set AllowToUpdateStatsFromBrowser to 1, you can change this parameter to 1.
388 # Change : Effective for new updates only
389 # Possible values: 0 or 1
390 # Default: 0
391 #
392 SaveDatabaseFilesWithPermissionsForEveryone=0
393
394
395 # AWStats can purge log file, after analyzing it. Note that AWStats is able
396 # to detect new lines in a log file, to process only them, so you can launch
397 # AWStats as often as you want, even with this parameter to 0.
398 # With 0, no purge is made, so you must use a scheduled task or a web server
399 # that make this purge frequently.
400 # With 1, the purge of the log file is made each time AWStats update is ran.
401 # This parameter doesn't work with IIS (This web server doesn't let its log
402 # file to be purged).
403 # Change : Effective for new updates only
404 # Possible values: 0 or 1
405 # Default: 0
406 #
407 PurgeLogFile=0
408
409
410 # When PurgeLogFile is setup to 1, AWStats will clean your log file after
411 # processing it. You can however keep an archive file of all processed log
412 # records by setting this parameter (For example if you want to use another
413 # log analyzer). The archived log file is saved in "DirData" with name
414 # awstats_archive.configname[.suffix].log
415 # This parameter is not used if PurgeLogFile=0
416 # Change : Effective for new updates only
417 # Possible values: 0, 1, or tags (See LogFile parameter) for suffix
418 # Example: 1
419 # Example: %YYYY%MM%DD
420 # Default: 0
421 #
422 ArchiveLogRecords=0
423
424
425 # Each time you run the update process, AWStats overwrite the 'historic file'
426 # for the month (awstatsMMYYYY[.*].txt) with the updated one.
427 # When write errors occurs (IO, disk full,...), this historic file can be
428 # corrupted and must be deleted. Because this file contains information of all
429 # past processed log files, you will loose old stats if removed. So you can
430 # ask AWStats to save last non corrupted file in a .bak file. This file is
431 # stored in "DirData" directory with other 'historic files'.
432 # Change : Effective for new updates only
433 # Possible values: 0 or 1
434 # Default: 0
435 #
436 KeepBackupOfHistoricFiles=1
437
438
439 # Default index page name for your web server.
440 # Change : Effective for new updates only
441 # Example: "index.php index.html default.html"
442 # Default: "index.html"
443 #
444 DefaultFile="index.html"
445
446
447 # Do not include access from clients that match following criteria.
448 # If your log file contains IP adresses in host field, you must enter here
449 # matching IP adresses criteria.
450 # If DNS lookup is already done in your log file, you must enter here hostname
451 # criteria, else enter ip address criteria.
452 # The opposite parameter of "SkipHosts" is "OnlyHosts".
453 # Note: Use space between each value. This parameter is not case sensitive.
454 # Note: You can use regular expression values writing value with REGEX[value].
455 # Change : Effective for new updates only
456 # Example: "127.0.0.1 REGEX[^192\.168\.] REGEX[^10\.]"
457 # Example: "localhost REGEX[^.*\.localdomain$]"
458 # Default: ""
459 #
460 SkipHosts="80.67.170.30 REGEX[^.*netaktiv.com$] REGEX[^80\.67\.170\.]"
461
462
463 # Do not include access from clients with a user agent that match following
464 # criteria. If you want to exclude a robot, you should update the robots.pm
465 # file instead of this parameter.
466 # The opposite parameter of "SkipUserAgents" is "OnlyUserAgents".
467 # Note: Use space between each value. This parameter is not case sensitive.
468 # Note: You can use regular expression values writing value with REGEX[value].
469 # Change : Effective for new updates only
470 # Example: "konqueror REGEX[ua_test_v\d\.\d]"
471 # Default: ""
472 #
473 SkipUserAgents=""
474
475
476 # Use SkipFiles to ignore access to URLs that match one of following entries.
477 # You can enter a list of not important URLs (like framed menus, hidden pages,
478 # etc...) to exclude them from statistics. You must enter here exact relative
479 # URL as found in log file, or a matching REGEX value.
480 # For example, to ignore /badpage.html, just add "/badpage.html". To ignore
481 # all pages in a particular directory, add "REGEX[^\/directorytoexclude]".
482 # The opposite parameter of "SkipFiles" is "OnlyFiles".
483 # Note: Use space between each value. This parameter is or not case sensitive
484 # depending on URLNotCaseSensitive parameter.
485 # Note: You can use regular expression values writing value with REGEX[value].
486 # Change : Effective for new updates only
487 # Example: "/badpage.html REGEX[^\/excludedirectory]"
488 # Default: ""
489 #
490 SkipFiles=""
491
492
493 # Include in stats, only accesses from hosts that match one of following
494 # entries. For example, if you want AWStats to filter access to keep only
495 # stats for visits from particular hosts, you can add those hosts names in
496 # this parameter.
497 # If DNS lookup is already done in your log file, you must enter here hostname
498 # criteria, else enter ip address criteria.
499 # The opposite parameter of "OnlyHosts" is "SkipHosts".
500 # Note: Use space between each value. This parameter is not case sensitive.
501 # Note: You can use regular expression values writing value with REGEX[value].
502 # Change : Effective for new updates only
503 # Example: "127.0.0.1 REGEX[^192\.168\.] REGEX[^10\.]"
504 # Default: ""
505 #
506 OnlyHosts=""
507
508
509 # Include in stats, only accesses from user agent that match one of following
510 # entries. For example, if you want AWStats to filter access to keep only
511 # stats for visits from particular browsers, you can add their user agents
512 # string in this parameter.
513 # The opposite parameter of "OnlyUserAgents" is "SkipUserAgents".
514 # Note: Use space between each value. This parameter is not case sensitive.
515 # Note: You can use regular expression values writing value with REGEX[value].
516 # Change : Effective for new updates only
517 # Example: "msie"
518 # Default: ""
519 #
520 OnlyUserAgents=""
521
522
523 # Include in stats, only accesses to URLs that match one of following entries.
524 # For example, if you want AWStats to filter access to keep only stats that
525 # match a particular string, like a particular directory, you can add this
526 # directory name in this parameter.
527 # The opposite parameter of "OnlyFiles" is "SkipFiles".
528 # Note: Use space between each value. This parameter is or not case sensitive
529 # depending on URLNotCaseSensitive parameter.
530 # Note: You can use regular expression values writing value with REGEX[value].
531 # Change : Effective for new updates only
532 # Example: "REGEX[marketing_directory] REGEX[office\/.*\.(csv|sxw)$]"
533 # Default: ""
534 #
535 OnlyFiles=""
536
537
538 # Add here a list of kind of url (file extension) that must be counted as
539 # "Hit only" and not as a "Hit" and "Page/Download". You can set here all
540 # images extensions as they are hit downloaded that must be counted but they
541 # are not viewed pages. URLs with such extensions are not included in the TOP
542 # Pages/URL report.
543 # Note: If you want to exclude particular URLs from stats (No Pages and no
544 # Hits reported), you must use SkipFiles parameter.
545 # Change : Effective for new updates only
546 # Example: "css js class gif jpg jpeg png bmp ico zip arj gz z wav mp3 wma mpg"
547 # Example: ""
548 # Default: "css js class gif jpg jpeg png bmp ico"
549 #
550 NotPageList="css js class gif jpg jpeg png bmp ico swf zip arj gz z wav mp3 wma mpg"
551
552
553 # By default, AWStats considers that records found in web log file are
554 # successful hits if HTTP code returned by server is a valid HTTP code (200
555 # and 304). Any other code are reported in HTTP status chart.
556 # Note that HTTP 'control codes', like redirection (302, 305) are not added by
557 # default in this list as they are not pages seen by a visitor but are
558 # protocol exchange codes to tell the browser to ask another page. Because
559 # this other page will be counted and seen with a 200 or 304 code, if you
560 # add such codes, you will have 2 pages viewed reported for only one in facts.
561 # Change : Effective for new updates only
562 # Example: "200 304 302 305"
563 # Default: "200 304"
564 #
565 ValidHTTPCodes="200 304"
566
567
568 # By default, AWStats considers that records found in mail log file are
569 # successful mail transfers if field that represent return code in analyzed
570 # log file match values defined by this parameter.
571 # Change : Effective for new updates only
572 # Example: "1 250 200"
573 # Default: "1 250"
574 #
575 ValidSMTPCodes="1 250"
576
577
578 # Some web servers on some Operating systems (IIS-Windows) considers that a
579 # login with same value but different case are the same login. To tell AWStats
580 # to also considers them as one, set this parameter to 1.
581 # Change : Effective for new updates only
582 # Possible values: 0 or 1
583 # Default: 0
584 #
585 AuthenticatedUsersNotCaseSensitive=0
586
587
588 # Some web servers on some Operating systems (IIS-Windows) considers that two
589 # URLs with same value but different case are the same URL. To tell AWStats to
590 # also considers them as one, set this parameter to 1.
591 # Change : Effective for new updates only
592 # Possible values: 0 or 1
593 # Default: 0
594 #
595 URLNotCaseSensitive=0
596
597
598 # Keep or remove the anchor string you can find in some URLs.
599 # Change : Effective for new updates only
600 # Possible values: 0 or 1
601 # Default: 0
602 #
603 URLWithAnchor=0
604
605
606 # In URL links, "?" char is used to add parameter's list in URLs. Syntax is:
607 # /mypage.html?param1=value1&param2=value2
608 # However, some servers/sites use also others chars to isolate dynamic part of
609 # their URLs. You can complete this list with all such characters.
610 # Change : Effective for new updates only
611 # Example: "?;,"
612 # Default: "?;"
613 #
614 URLQuerySeparators="?;"
615
616
617 # Keep or remove the query string to the URL in the statistics for individual
618 # pages. This is primarily used to differentiate between the URLs of dynamic
619 # pages. If set to 1, mypage.html?id=x and mypage.html?id=y are counted as two
620 # different pages.
621 # Warning, when set to 1, memory required to run AWStats is dramatically
622 # increased if you have a lot of changing URLs (for example URLs with a random
623 # id inside). Such web sites should not set this option to 1 or use seriously
624 # the next parameter URLWithQueryWithOnlyFollowingParameters (or eventually
625 # URLWithQueryWithoutFollowingParameters).
626 # Change : Effective for new updates only
627 # Possible values:
628 # 0 - URLs are cleaned from the query string (ie: "/mypage.html")
629 # 1 - Full URL with query string is used     (ie: "/mypage.html?p=x&q=y")
630 # Default: 0
631 #
632 URLWithQuery=0
633
634
635 # When URLWithQuery is on, you will get the full URL with all parameters in
636 # URL reports. But among thoose parameters, sometimes you don't need a
637 # particular parameter because it does not identify the page or because it's
638 # a random ID changing for each access even if URL points to same page. In
639 # such cases, it is higly recommanded to ask AWStats to keep only parameters
640 # you need (if you know them) before counting, manipulating and storing URL.
641 # Enter here list of wanted parameters. For example, with "param", one hit on
642 # /mypage.cgi?param=abc&id=Yo4UomP9d  and  /mypage.cgi?param=abc&id=Mu8fdxl3r
643 # will be reported as 2 hits on /mypage.cgi?param=abc
644 # This parameter is not used when URLWithQuery is 0 and can't be used with
645 # URLWithQueryWithoutFollowingParameters.
646 # Change : Effective for new updates only
647 # Example: "param"
648 # Default: ""
649 #
650 URLWithQueryWithOnlyFollowingParameters=""
651
652
653 # When URLWithQuery is on, you will get the full URL with all parameters in
654 # URL reports. But among thoose parameters, sometimes you don't need a
655 # particular parameter because it does not identify the page or because it's
656 # a random ID changing for each access even if URL points to same page. In
657 # such cases, it is higly recommanded to ask AWStats to remove such parameters
658 # from the URL before counting, manipulating and storing URL. Enter here list
659 # of all non wanted parameters. For example if you enter "id", one hit on
660 # /mypage.cgi?param=abc&id=Yo4UomP9d  and  /mypage.cgi?param=abc&id=Mu8fdxl3r
661 # will be reported as 2 hits on /mypage.cgi?param=abc
662 # This parameter is not used when URLWithQuery is 0 and can't be used with
663 # URLWithQueryWithOnlyFollowingParameters.
664 # Change : Effective for new updates only
665 # Example: "PHPSESSID jsessionid"
666 # Default: ""
667 #
668 URLWithQueryWithoutFollowingParameters=""
669
670
671 # Keep or remove the query string to the referrer URL in the statistics for
672 # external referrer pages. This is used to differentiate between the URLs of
673 # dynamic referrer pages. If set to 1, mypage.html?id=x and mypage.html?id=y
674 # are counted as two different referrer pages.
675 # Change : Effective for new updates only
676 # Possible values:
677 # 0 - Referrer URLs are cleaned from the query string (ie: "/mypage.html")
678 # 1 - Full URL with query string is used      (ie: "/mypage.html?p=x&q=y")
679 # Default: 0
680 #
681 URLReferrerWithQuery=0
682
683
684 # AWStats can detect setup problems or show you important informations to have
685 # a better use. Keep this to 1, except if AWStats says you can change it.
686 # Change : Effective immediatly
687 # Possible values: 0 or 1
688 # Default: 1
689 #
690 WarningMessages=1
691
692
693 # When an error occurs, AWStats output a message related to errors. If you
694 # want (in most cases for security reasons) to have no error messages, you
695 # can set this parameter to your personalized generic message.
696 # Change : Effective immediatly
697 # Example: "An error occured. Contact your Administrator"
698 # Default: ""
699 #
700 ErrorMessages=""
701
702
703 # AWStat can be run with debug=x parameter to output various informations
704 # to help in debugging or solving troubles. If you want to allow this (not
705 # enabled by default for security reasons), set this parameter to 0.
706 # Change : Effective immediatly
707 # Possible values: 0 or 1
708 # Default: 0
709 #
710 DebugMessages=0
711
712
713 # To help you to detect if your log format is good, AWStats report an error
714 # if all the first NbOfLinesForCorruptedLog lines have a format that does not
715 # match the LogFormat parameter.
716 # However, some worm virus attack on your web server can result in a very high
717 # number of corrupted lines in your log. So if you experience awstats stop
718 # because of bad virus records at the beginning of your log file, you can
719 # increase this parameter (very rare).
720 # Change : Effective for new updates only
721 # Default: 50
722 #
723 NbOfLinesForCorruptedLog=50
724
725
726 # For some particular integration needs, you may want to have CGI links to
727 # point to another script than awstats.pl.
728 # Use the name of this script in WrapperScript parameter.
729 # Change : Effective immediatly
730 # Example: "awstatslauncher.pl"
731 # Default: ""
732 #
733 WrapperScript=""
734
735
736 # DecodeUA must be set to 1 if you use Roxen web server. This server converts
737 # all spaces in user agent field into %20. This make the AWStats robots, os
738 # and browsers detection fail in some cases. Just change it to 1 if and only
739 # if your web server is Roxen.
740 # Change : Effective for new updates only
741 # Possible values: 0 or 1
742 # Default: 0
743 #
744 DecodeUA=0
745
746
747 # MiscTrackerUrl can be used to make AWStats able to detect some miscellanous
748 # things, that can not be tracked on other way, like:
749 # - Javascript disabled
750 # - Java enabled
751 # - Screen size
752 # - Color depth
753 # - Macromedia Director plugin
754 # - Macromedia Shockwave plugin
755 # - Realplayer G2 plugin
756 # - QuickTime plugin
757 # - Mediaplayer plugin
758 # - Acrobat PDF plugin
759 # To enable all this features, you must copy the awstats_misc_tracker.js file
760 # into a /js/ directory stored in your web document root and add the following
761 # HTML code at the end of your index page (but before </BODY>) :
762 #
763 # <script language=javascript src="/js/awstats_misc_tracker.js"></script>
764 # <noscript><img src="/js/awstats_misc_tracker.js?nojs=y" height=0 width=0 border=0 style="display: none"></noscript>
765 #
766 # If code is not added in index page, all those detection capabilities will be
767 # disabled. You must also check that ShowScreenSizeStats and ShowMiscStats
768 # parameters are set to 1 to make results appear in AWStats report page.
769 # If you want to use another directory than /js/, you must also change the
770 # awstatsmisctrackerurl variable into the awstats_misc_tracker.js file.
771 # Change : Effective for new updates only.
772 # Possible value: URL of javascript tracker file added in your HTML code.
773 # Default: "/js/awstats_misc_tracker.js"
774 #
775 MiscTrackerUrl="/js/awstats_misc_tracker.js"
776
777
778
779 #-----------------------------------------------------------------------------
780 # OPTIONAL ACCURACY SETUP SECTION (Not required but increase AWStats features)
781 #-----------------------------------------------------------------------------
782
783 # Following values allows you to define accuracy of AWStats entities (robots,
784 # browsers, os, referers, file types) detection.
785 # It might be a good idea for large web sites or ISP that provides AWStats to
786 # high number of customers, to set this parameter to 1 (or 0), instead of 2.
787 # Possible values:
788 #  0 = No detection,
789 #  1 = Medium/Standard detection
790 #  2 = Full detection
791 # Change : Effective for new updates only
792 # Default: 2 (0 for LevelForWormsDetection)
793 #
794 LevelForBrowsersDetection=2         # 0 disables Browsers detection.
795                                     # 2 reduces AWStats speed by 2%
796 LevelForOSDetection=2               # 0 disables OS detection.
797                                     # 2 reduces AWStats speed by 3%
798 LevelForRefererAnalyze=2            # 0 disables Origin detection.
799                                     # 2 reduces AWStats speed by 14%
800 LevelForRobotsDetection=2           # 0 disables Robots detection.
801                                     # 2 reduces AWStats speed by 2.5%
802 LevelForSearchEnginesDetection=2    # 0 disables Search engines detection.
803                                     # 2 reduces AWStats speed by 9%
804 LevelForKeywordsDetection=2         # 0 disables Keyphrases/Keywords detection.
805                                     # 2 reduces AWStats speed by 1%
806 LevelForFileTypesDetection=2        # 0 disables File types detection.
807                                     # 2 reduces AWStats speed by 1%
808 LevelForWormsDetection=2            # 0 disables Worms detection.
809                                     # 2 reduces AWStats speed by 15%
810
811
812
813 #-----------------------------------------------------------------------------
814 # OPTIONAL APPEARANCE SETUP SECTION (Not required but increase AWStats features)
815 #-----------------------------------------------------------------------------
816
817 # When you use AWStats as a CGI, you can have the reports shown in HTML frames.
818 # Frames are only available for report viewed dynamically. When you build
819 # pages from command line, this option is not used and no frames are built.
820 # Possible values: 0 or 1
821 # Default: 1
822 #
823 UseFramesWhenCGI=1
824
825
826 # This parameter ask your browser to open detailed reports into a different
827 # window than the main page.
828 # Possible values:
829 # 0 - Open all in same browser window
830 # 1 - Open detailed reports in another window except if using frames
831 # 2 - Open always in a different window even if reports are framed
832 # Default: 1
833 #
834 DetailedReportsOnNewWindows=1
835
836
837 # You can add, in the HTML report page, a cache lifetime (in seconds) that
838 # will be returned to browser in HTTP header answer by server.
839 # This parameter is not used when report are built with -staticlinks option.
840 # Example: 3600
841 # Default: 0
842 #
843 Expires=0
844
845
846 # To avoid too large web pages, you can ask AWStats to limit number of rows of
847 # all reported charts to this number when no other limit apply.
848 # Default: 1000
849 #
850 MaxRowsInHTMLOutput=1000
851
852
853 # Set your primary language (ISO-639-1 language codes).
854 # Possible value:
855 #  Albanian=al, Bosnian=ba, Bulgarian=bg, Catalan=ca,
856 #  Chinese (Taiwan)=tw, Chinese (Simpliefied)=cn, Czech=cz, Danish=dk,
857 #  Dutch=nl, English=en, Estonian=et, Euskara=eu, Finnish=fi,
858 #  French=fr, Galician=gl, German=de, Greek=gr, Hebrew=he, Hungarian=hu,
859 #  Icelandic=is, Indonesian=id, Italian=it, Japanese=jp, Korean=kr,
860 #  Latvian=lv, Norwegian (Nynorsk)=nn, Norwegian (Bokmal)=nb, Polish=pl,
861 #  Portuguese=pt, Portuguese (Brazilian)=br, Romanian=ro, Russian=ru,
862 #  Serbian=sr, Slovak=sk, Slovenian=si, Spanish=es, Swedish=se, Turkish=tr,
863 #  Ukrainian=ua, Welsh=cy.
864 #  First available language accepted by browser=auto
865 # Default: "auto"
866 #
867 Lang="auto"
868
869
870 # Set the location of language files.
871 # Example: "/usr/share/awstats/lang"
872 # Default: "./lang" (means lang directory is in same location than awstats.pl)
873 #
874 DirLang="/usr/share/awstats/lang"
875
876
877 # Show menu header with reports' links
878 # Possible values: 0 or 1
879 # Default: 1
880 #
881 ShowMenu=1                                     
882
883
884 # You choose here which reports you want to see in the main page and what you
885 # want to see in those reports.
886 # Possible values:
887 #  0  - Report is not shown at all
888 #  1  - Report is shown in main page with an entry in menu and default columns
889 # XYZ - Report shows column informations defined by code X,Y,Z...
890 #       X,Y,Z... are code letters among the following:
891 #        U = Unique visitors
892 #        V = Visits
893 #        P = Number of pages
894 #        H = Number of hits (or mails)
895 #        B = Bandwith (or total mail size for mail logs)
896 #        L = Last access date
897 #        E = Entry pages
898 #        X = Exit pages
899 #        C = Web compression (mod_gzip,mod_deflate)
900 #        M = Average mail size (mail logs)
901 #
902
903 # Show monthly summary
904 # Context: Web, Streaming, Mail, Ftp
905 # Default: UVPHB, Possible column codes: UVPHB
906 ShowSummary=UVPHB
907
908 # Show monthly chart
909 # Context: Web, Streaming, Mail, Ftp
910 # Default: UVPHB, Possible column codes: UVPHB
911 ShowMonthStats=UVPHB
912
913 # Show days of month chart
914 # Context: Web, Streaming, Mail, Ftp
915 # Default: VPHB, Possible column codes: VPHB
916 ShowDaysOfMonthStats=VPHB
917
918 # Show days of week chart
919 # Context: Web, Streaming, Mail, Ftp
920 # Default: PHB, Possible column codes: PHB
921 ShowDaysOfWeekStats=PHB
922
923 # Show hourly chart
924 # Context: Web, Streaming, Mail, Ftp
925 # Default: PHB, Possible column codes: PHB
926 ShowHoursStats=PHB
927
928 # Show domains/country chart
929 # Context: Web, Streaming, Mail, Ftp
930 # Default: PHB, Possible column codes: PHB
931 ShowDomainsStats=PHB
932
933 # Show hosts chart
934 # Context: Web, Streaming, Mail, Ftp
935 # Default: PHBL, Possible column codes: PHBL
936 ShowHostsStats=PHBL
937
938 # Show authenticated users chart
939 # Context: Web, Streaming, Ftp
940 # Default: 0, Possible column codes: PHBL
941 ShowAuthenticatedUsers=0
942
943 # Show robots chart
944 # Context: Web, Streaming
945 # Default: HBL, Possible column codes: HBL
946 ShowRobotsStats=HBL
947
948 # Show worms chart
949 # Context: Web, Streaming
950 # Default: 0 (If set to other than 0, see also LevelForWormsDetection), Possible column codes: HBL
951 ShowWormsStats=0
952
953 # Show email senders chart (For use when analyzing mail log files)
954 # Context: Mail
955 # Default: 0, Possible column codes: HBML
956 ShowEMailSenders=0
957
958 # Show email receivers chart (For use when analyzing mail log files)
959 # Context: Mail
960 # Default: 0, Possible column codes: HBML
961 ShowEMailReceivers=0
962
963 # Show session chart
964 # Context: Web, Streaming, Ftp
965 # Default: 1, Possible column codes: None
966 ShowSessionsStats=1
967
968 # Show pages-url chart.
969 # Context: Web, Streaming, Ftp
970 # Default: PBEX, Possible column codes: PBEX
971 ShowPagesStats=PBEX
972
973 # Show file types chart.
974 # Context: Web, Streaming, Ftp
975 # Default: HB, Possible column codes: HBC
976 ShowFileTypesStats=HB
977
978 # Show file size chart (Not yet available)
979 # Context: Web, Streaming, Mail, Ftp
980 # Default: 1, Possible column codes: None
981 ShowFileSizesStats=0           
982
983 # Show operating systems chart
984 # Context: Web, Streaming, Ftp
985 # Default: 1, Possible column codes: None
986 ShowOSStats=1
987
988 # Show browsers chart
989 # Context: Web, Streaming
990 # Default: 1, Possible column codes: None
991 ShowBrowsersStats=1
992
993 # Show screen size chart
994 # Context: Web, Streaming
995 # Default: 0 (If set to 1, see also MiscTrackerUrl), Possible column codes: None
996 ShowScreenSizeStats=0
997
998 # Show origin chart
999 # Context: Web, Streaming
1000 # Default: PH, Possible column codes: PH
1001 ShowOriginStats=PH
1002
1003 # Show keyphrases chart
1004 # Context: Web, Streaming
1005 # Default: 1, Possible column codes: None
1006 ShowKeyphrasesStats=1
1007
1008 # Show keywords chart
1009 # Context: Web, Streaming
1010 # Default: 1, Possible column codes: None
1011 ShowKeywordsStats=1
1012
1013 # Show misc chart
1014 # Context: Web, Streaming
1015 # Default: a (See also MiscTrackerUrl parameter), Possible column codes: anjdfrqwp
1016 ShowMiscStats=a
1017
1018 # Show http errors chart
1019 # Context: Web, Streaming
1020 # Default: 1, Possible column codes: None
1021 ShowHTTPErrorsStats=1
1022
1023 # Show smtp errors chart (For use when analyzing mail log files)
1024 # Context: Mail
1025 # Default: 0, Possible column codes: None
1026 ShowSMTPErrorsStats=0
1027
1028 # Show the cluster report (Your LogFormat must contains the %cluster tag)
1029 # Context: Web, Streaming, Ftp
1030 # Default: 0, Possible column codes: PHB
1031 ShowClusterStats=0
1032
1033
1034 # Some graphical reports are followed by the data array of values.
1035 # If you don't want this array (to reduce report size for example), you can
1036 # set thoose options to 0.
1037 # Possible values: 0 or 1
1038 # Default: 1
1039 #
1040 # Data array values for the ShowMonthStats report
1041 AddDataArrayMonthStats=1
1042 # Data array values for the ShowDaysOfMonthStats report
1043 AddDataArrayShowDaysOfMonthStats=1
1044 # Data array values for the ShowDaysOfWeekStats report
1045 AddDataArrayShowDaysOfWeekStats=1
1046 # Data array values for the ShowHoursStats report
1047 AddDataArrayShowHoursStats=1
1048
1049
1050 # In the Origin chart, you have stats on where your hits came from. You can
1051 # includes hits on pages that comes from pages of same sites in this chart.
1052 # Possible values: 0 or 1
1053 # Default: 0
1054 #
1055 IncludeInternalLinksInOriginSection=0
1056
1057
1058 # Following parameter can be used to choose maximum number of lines shown for
1059 # the particular following report.
1060 #
1061 # Stats by countries/domains
1062 MaxNbOfDomain = 10
1063 MinHitDomain  = 1
1064 # Stats by hosts
1065 MaxNbOfHostsShown = 10
1066 MinHitHost    = 1
1067 # Stats by authenticated users
1068 MaxNbOfLoginShown = 10
1069 MinHitLogin   = 1
1070 # Stats by robots
1071 MaxNbOfRobotShown = 10
1072 MinHitRobot   = 1
1073 # Stats by pages
1074 MaxNbOfPageShown = 10
1075 MinHitFile    = 1
1076 # Stats by OS
1077 MaxNbOfOsShown = 10
1078 MinHitOs      = 1
1079 # Stats by browsers
1080 MaxNbOfBrowsersShown = 10
1081 MinHitBrowser = 1
1082 # Stats by screen size
1083 MaxNbOfScreenSizesShown = 5
1084 MinHitScreenSize = 1
1085 # Stats by window size (following 2 parameters are not yet used)
1086 MaxNbOfWindowSizesShown = 5
1087 MinHitWindowSize = 1
1088 # Stats by referers
1089 MaxNbOfRefererShown = 10
1090 MinHitRefer   = 1
1091 # Stats for keyphrases
1092 MaxNbOfKeyphrasesShown = 10
1093 MinHitKeyphrase = 1
1094 # Stats for keywords
1095 MaxNbOfKeywordsShown = 10
1096 MinHitKeyword = 1
1097 # Stats for sender or receiver emails
1098 MaxNbOfEMailsShown = 20
1099 MinHitEMail   = 1
1100
1101
1102 # Choose if you want the week report to start on sunday or monday
1103 # Possible values:
1104 # 0 - Week start on sunday
1105 # 1 - Week start on monday
1106 # Default: 1
1107 #
1108 FirstDayOfWeek=1
1109
1110
1111 # List of visible flags that links to other language translations.
1112 # See Lang parameter for list of allowed flag/language codes.
1113 # If you don't want any flag link, set ShowFlagLinks to "".
1114 # This parameter is used only if ShowMenu parameter is set to 1.
1115 # Possible values: "" or "language_codes_separated_by_space"
1116 # Example: "en es fr nl de"
1117 # Default: ""
1118 #
1119 ShowFlagLinks=""
1120
1121
1122 # Each URL, shown in stats report views, are links you can click.
1123 # Possible values: 0 or 1
1124 # Default: 1
1125 #
1126 ShowLinksOnUrl=1
1127
1128
1129 # When AWStats build HTML links in its report pages, it starts thoose link
1130 # with "http://". However some links might be HTTPS links, so you can enter
1131 # here the root of all your HTTPS links. If all your site is a SSL web site,
1132 # just enter "/".
1133 # This parameter is not used if ShowLinksOnUrl is 0.
1134 # Example: "/shopping"
1135 # Example: "/"
1136 # Default: ""
1137 #
1138 UseHTTPSLinkForUrl=""
1139
1140
1141 # Maximum length of URL part shown on stats page (number of characters).
1142 # This affects only URL visible text, link still work.
1143 # Default: 64
1144 #
1145 MaxLengthOfShownURL=64
1146
1147
1148 # You can enter HTML code that will be added at the top of AWStats reports.
1149 # Default: ""
1150 #
1151 HTMLHeadSection=""
1152
1153
1154 # You can enter HTML code that will be added at the end of AWStats reports.
1155 # Great to add advert ban.
1156 # Default: ""
1157 #
1158 HTMLEndSection=""
1159
1160
1161 # You can set Logo and LogoLink to use your own logo.
1162 # Logo must be the name of image file (must be in $DirIcons/other directory).
1163 # LogoLink is the expected URL when clicking on Logo.
1164 # Default: "awstats_logo6.png"
1165 #
1166 Logo="awstats_alternc.png"
1167 LogoLink="http://www.alternc.org"
1168
1169
1170 # Value of maximum bar width/height for horizontal/vertical HTML graphics bar.
1171 # Default: 260/90
1172 #
1173 BarWidth   = 260
1174 BarHeight  = 180
1175
1176
1177 # You can ask AWStats to use a particular CSS (Cascading Style Sheet) to
1178 # change its look. To create a style sheet, you can use samples provided with
1179 # AWStats in wwwroot/css directory.
1180 # Example: "/awstatscss/awstats_bw.css"
1181 # Example: "/css/awstats_bw.css"
1182 # Default: ""
1183 #
1184 StyleSheet=""
1185
1186
1187 # Those colors parameters can be used (if StyleSheet parameter is not used)
1188 # to change AWStats look.
1189 # Example: color_name="RRGGBB"  # RRGGBB is Red Green Blue components in Hex
1190 #
1191 color_Background="FFFFFF"               # Background color for main page (Default = "FFFFFF")
1192 color_TableBGTitle="CCCCDD"             # Background color for table title (Default = "CCCCDD")
1193 color_TableTitle="000000"               # Table title font color (Default = "000000")
1194 color_TableBG="CCCCDD"                  # Background color for table (Default = "CCCCDD")
1195 color_TableRowTitle="FFFFFF"    # Table row title font color (Default = "FFFFFF")
1196 color_TableBGRowTitle="ECECEC"  # Background color for row title (Default = "ECECEC")
1197 color_TableBorder="ECECEC"              # Table border color (Default = "ECECEC")
1198 color_text="000000"                             # Color of text (Default = "000000")
1199 color_textpercent="606060"              # Color of text for percent values (Default = "606060")
1200 color_titletext="000000"                # Color of text title within colored Title Rows (Default = "000000")
1201 color_weekend="EAEAEA"                  # Color for week-end days (Default = "EAEAEA")
1202 color_link="0011BB"                    &n