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 1287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1298 # Plugin: GeoIP_City_Maxmind | 1298 # Plugin: GeoIP_City_Maxmind |
1299 # Perl modules required: Geo::IP (from Maxmind) | 1299 # Perl modules required: Geo::IP (from Maxmind) |
1300 # This plugin add a chart of hits by cities (with country and regions | 1300 # This plugin add a chart of hits by cities (with country and regions |
1301 # informations for major countries). | 1301 # informations for major countries). |
1302 # Note: This plugin need Maxmind GeoIP Perl module AND the city database. | 1302 # Note: This plugin need Maxmind GeoIP Perl module AND the city database. |
1303 # Note: I get some problem with Maxmind Geo::IP Perl module with ActiveState | 1303 # Note: I get some problem with Maxmind Geo::IP Perl module with ActiveState |
1304 # on Windows but it works great on Linux with default Perl. | 1304 # on Windows but it works great on Linux with default Perl. |
1305 # You need to purchase a license from Maxmind to get/use the City database. | 1305 # You need to purchase a license from Maxmind to get/use the City database. |
1306 # This plugin reduces AWStats speed. | 1306 # This plugin reduces AWStats speed. |
1307 # | 1307 # |
1308 #LoadPlugin="geoip_city_maxmind GEOIP_STANDARD /pathto/GeoIPCity.dat" | 1308 LoadPlugin="geoip_city_maxmind GEOIP_STANDARD /usr/share/GeoIP/GeoIPCity.dat" |
1309 | 1309 |
1310 # Plugin: GeoIP_ISP_Maxmind | 1310 # Plugin: GeoIP_ISP_Maxmind |
1311 # Perl modules required: Geo::IP (from Maxmind) | 1311 # Perl modules required: Geo::IP (from Maxmind) |
1312 # This plugin add a chart of hits by ISP. | 1312 # This plugin add a chart of hits by ISP. |
1313 # Note: This plugin need Maxmind GeoIP Perl module AND the ISP database. | 1313 # Note: This plugin need Maxmind GeoIP Perl module AND the ISP database. |
1314 # Note: I get some problem with Maxmind Geo::IP Perl module with ActiveState | 1314 # Note: I get some problem with Maxmind Geo::IP Perl module with ActiveState |
1315 # on Windows but it works great on Linux with default Perl. | 1315 # on Windows but it works great on Linux with default Perl. |
1316 # You need to purchase a license from Maxmind to get/use the ISP database. | 1316 # You need to purchase a license from Maxmind to get/use the ISP database. |
1317 # This plugin reduces AWStats speed. | 1317 # This plugin reduces AWStats speed. |
1318 # | 1318 # |
(...skipping 152 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 |