22 lines
713 B
Plaintext
22 lines
713 B
Plaintext
#
|
|
# Directives to add to your Apache conf file to allow use of AWStats as a CGI.
|
|
# Note that path "/usr/local/awstats/" must reflect your AWStats install path.
|
|
#
|
|
Alias /awstatsclasses "/usr/share/awstats/wwwroot/classes/"
|
|
Alias /awstatscss "/usr/share/awstats/wwwroot/css/"
|
|
Alias /awstatsicons "/usr/share/awstats/wwwroot/icon/"
|
|
Alias /js/awstats_misc_tracker.js "/usr/share/awstats/wwwroot/js/awstats_misc_tracker.js"
|
|
ScriptAlias /awstats/ "/usr/share/awstats/wwwroot/cgi-bin/"
|
|
|
|
#
|
|
# This is to permit URL access to scripts/files in AWStats directory.
|
|
#
|
|
<Directory "/usr/share/awstats/wwwroot">
|
|
Options None
|
|
AllowOverride None
|
|
Order allow,deny
|
|
Require all granted
|
|
Allow from all
|
|
</Directory>
|
|
|