habe vorhin awstats auf einem system umgestellt von static auf dynamic ...
/etc/apache2/sites-available/ispcp
und die in /etc/ispcp/apache ...
hier habe ich alles von hand angepasst (als vorlage von VM mit dyn. stats)
die cron jobs sind alle angepasst
/etc/awstats wurde durch den folder der VM ersetzt
die apache 01_awstats.conf und in etc/ispcp geändert
mod_proxy & mod_proxy_html sind akiv
apache neu gestartet
den awstats cron job manuell gestartet
wenn ich mich nun einlogge bekomme ich ein 404:
The requested URL /stats/website.tld was not found on this server.
habe ich etwas übersehen?
das hatte auch noch gefehlt:
a2ensite 01_awstats.conf
aber jetzt bekomme ich ein:
"Permission Denied" auf /stats/domain.de
das hat auch noch gefehlt:
/etc/apache2/mods-available/proxy.conf
jetzt klappt es - ist gar nicht so schwer von AW static auf dynamic umzustellen
Code:
<IfModule mod_proxy.c>
#turning ProxyRequests on and allowing proxying from all may allow
#spammers to use your proxy to send email.
ProxyRequests Off
<Proxy *>
AddDefaultCharset off
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Proxy>
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
# Set to one of: Off | On | Full | Block
ProxyVia On
</IfModule>