addendum for AWstats, Plesk 8 and suexec
in the article "AWstats, Plesk 8 and suexec" i showed how to set up AWstats on a Plesk 8 system without all the suexec-trouble. recently one of my servers made another trouble, because the FollowSymLinks was missing. so i wrote this addendum.
in your vhosts.conf and vhost_ssl.conf the changes should be:
vhost.conf:
<Directory /srv/www/vhosts/foo.com/httpdocs>
Options +FollowSymLinks
</Directory>
ScriptAlias /awstats/ "/srv/www/vhosts/foo.com/httpdocs/awstats/"
<Directory "/srv/www/vhosts/foo.com/httpdocs/awstats/">
Options none
AllowOverride None
Order allow,deny
Allow from all
</Directory> vhost_ssl.conf:
<Directory /srv/www/vhosts/foo.com/httpsdocs>
Options +FollowSymLinks
</Directory>
ScriptAlias /awstats/ "/srv/www/vhosts/foo.com/httpdocs/awstats/"
<Directory "/srv/www/vhosts/foo.com/httpdocs/awstats/">
Options none
AllowOverride None
Order allow,deny
Allow from all
</Directory>

