| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 # defined by the "DirData" parameter. Set this value to the directory where | 176 # defined by the "DirData" parameter. Set this value to the directory where |
| 177 # you want AWStats to save its database and working files into. | 177 # you want AWStats to save its database and working files into. |
| 178 # Warning: If you want to be able to use the "AllowToUpdateStatsFromBrowser" | 178 # Warning: If you want to be able to use the "AllowToUpdateStatsFromBrowser" |
| 179 # feature (see later), you need "Write" permissions by web server user on this | 179 # feature (see later), you need "Write" permissions by web server user on this |
| 180 # directory (and "Modify" for Windows NTFS file systems). | 180 # directory (and "Modify" for Windows NTFS file systems). |
| 181 # Example: "/var/lib/awstats" | 181 # Example: "/var/lib/awstats" |
| 182 # Example: "../data" | 182 # Example: "../data" |
| 183 # Example: "C:/awstats_data_dir" | 183 # Example: "C:/awstats_data_dir" |
| 184 # Default: "." (means same directory as awstats.pl) | 184 # Default: "." (means same directory as awstats.pl) |
| 185 # | 185 # |
| 186 DirData="/var/www/awstatsdata/<%= title %>" | 186 DirData="__AWSTATSDATA__/<%= title %>" |
| 187 | 187 |
| 188 # Relative or absolute web URL of your awstats cgi-bin directory. | 188 # Relative or absolute web URL of your awstats cgi-bin directory. |
| 189 # This parameter is used only when AWStats is run from command line | 189 # This parameter is used only when AWStats is run from command line |
| 190 # with -output option (to generate links in HTML reported page). | 190 # with -output option (to generate links in HTML reported page). |
| 191 # Example: "/awstats" | 191 # Example: "/awstats" |
| 192 # Default: "/cgi-bin" (means awstats.pl is in "/yourwwwroot/cgi-bin") | 192 # Default: "/cgi-bin" (means awstats.pl is in "/yourwwwroot/cgi-bin") |
| 193 # | 193 # |
| 194 DirCgi="/web/<%= title %>" | 194 DirCgi="/web/<%= title %>" |
| 195 | 195 |
| 196 | 196 |
| (...skipping 1274 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 |