| OLD | NEW |
| 1 #----------------------------------------------------------------------------- | 1 #----------------------------------------------------------------------------- |
| 2 # MAIN SETUP SECTION (Required to make AWStats work) | 2 # MAIN SETUP SECTION (Required to make AWStats work) |
| 3 #----------------------------------------------------------------------------- | 3 #----------------------------------------------------------------------------- |
| 4 | 4 |
| 5 # "LogFile" contains the web, ftp or mail server log file to analyze. | 5 # "LogFile" contains the web, ftp or mail server log file to analyze. |
| 6 # Possible values: A full path, or a relative path from awstats.pl directory. | 6 # Possible values: A full path, or a relative path from awstats.pl directory. |
| 7 # Example: "/var/log/apache/access.log" | 7 # Example: "/var/log/apache/access.log" |
| 8 # Example: "../logs/mycombinedlog.log" | 8 # Example: "../logs/mycombinedlog.log" |
| 9 # You can also use tags in this filename if you need a dynamic file name | 9 # You can also use tags in this filename if you need a dynamic file name |
| 10 # depending on date or time (Replacement is made by AWStats at the beginning | 10 # depending on date or time (Replacement is made by AWStats at the beginning |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 # image extensions as they are hit downloaded that must be counted but they | 544 # image extensions as they are hit downloaded that must be counted but they |
| 545 # are not viewed pages. URLs with such extensions are not included in the TOP | 545 # are not viewed pages. URLs with such extensions are not included in the TOP |
| 546 # Pages/URL report. | 546 # Pages/URL report. |
| 547 # Note: If you want to exclude particular URLs from stats (No Pages and no | 547 # Note: If you want to exclude particular URLs from stats (No Pages and no |
| 548 # Hits reported), you must use SkipFiles parameter. | 548 # Hits reported), you must use SkipFiles parameter. |
| 549 # Change : Effective for new updates only | 549 # Change : Effective for new updates only |
| 550 # Example: "css js class gif jpg jpeg png bmp ico zip arj gz z wav mp3 wma mpg" | 550 # Example: "css js class gif jpg jpeg png bmp ico zip arj gz z wav mp3 wma mpg" |
| 551 # Example: "" | 551 # Example: "" |
| 552 # Default: "css js class gif jpg jpeg png bmp ico" | 552 # Default: "css js class gif jpg jpeg png bmp ico" |
| 553 # | 553 # |
| 554 NotPageList="css js class gif jpg jpeg png bmp ico swf xml rdf" | 554 NotPageList="css js class gif jpg jpeg png bmp ico swf xml rdf woff otf ttf" |
| 555 | 555 |
| 556 | 556 |
| 557 # By default, AWStats considers that records found in web log file are | 557 # By default, AWStats considers that records found in web log file are |
| 558 # successful hits if HTTP code returned by server is a valid HTTP code (200 | 558 # successful hits if HTTP code returned by server is a valid HTTP code (200 |
| 559 # and 304). Any other code are reported in HTTP status chart. | 559 # and 304). Any other code are reported in HTTP status chart. |
| 560 # Note that HTTP 'control codes', like redirection (302, 305) are not added by | 560 # Note that HTTP 'control codes', like redirection (302, 305) are not added by |
| 561 # default in this list as they are not pages seen by a visitor but are | 561 # default in this list as they are not pages seen by a visitor but are |
| 562 # protocol exchange codes to tell the browser to ask another page. Because | 562 # protocol exchange codes to tell the browser to ask another page. Because |
| 563 # this other page will be counted and seen with a 200 or 304 code, if you | 563 # this other page will be counted and seen with a 200 or 304 code, if you |
| 564 # add such codes, you will have 2 pages viewed reported for only one in facts. | 564 # add such codes, you will have 2 pages viewed reported for only one in facts. |
| (...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1471 # config file. | 1471 # config file. |
| 1472 # This is particularly useful for users who have a lot of virtual servers, so | 1472 # This is particularly useful for users who have a lot of virtual servers, so |
| 1473 # a lot of config files and want to maintain common values in only one file. | 1473 # a lot of config files and want to maintain common values in only one file. |
| 1474 # Note that when a variable is defined both in a config file and in an | 1474 # Note that when a variable is defined both in a config file and in an |
| 1475 # included file, AWStats will use the last value read for parameters that | 1475 # included file, AWStats will use the last value read for parameters that |
| 1476 # contains one value and AWStats will concat all values from both files for | 1476 # contains one value and AWStats will concat all values from both files for |
| 1477 # parameters that are lists of values. | 1477 # parameters that are lists of values. |
| 1478 # | 1478 # |
| 1479 | 1479 |
| 1480 #Include "" | 1480 #Include "" |
| OLD | NEW |