bekomme hier einen Internal Server Error wenn ich die awstats aufrufe.
proxy.load und proxy_http.load sind aktiviert
AWSTATS_ACTIVE = yes
AWSTATS_MODE = 0
Code:
# httpd awstats support BEGIN.
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /stats http://localhost/stats/sample.tld
ProxyPassReverse /stats http://localhost/stats/sample.tld
<Location /stats>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^(.+)\?config=([^\?\&]+)(.*) $1\?config=sample.tld&$3 [NC,L]
</IfModule>
AuthType Basic
AuthName "Statistics for domain sk-biotrap.com"
AuthUserFile /var/www/virtual/sample.tld/.htpasswd
AuthGroupFile /var/www/virtual/sample.tld/.htgroup
Require group statistics
</Location>
# httpd awstats support END.
modsecurity2 war das Problem und so hab ich es gelöst:
Code:
httpd.conf eingefügt
<LocationMatch "/awstats/">
SecRuleEngine Off
</LocationMatch>
hat sich bei den configs der stats etwas geändert?
Ich verwende die gleichen secRules wie vor dem Update ...