ispCP - Board - Support
[solved ]awstats problem nach wechsel auf dynamic - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega International Area (/forum-22.html)
+--- Forum: German Corner (/forum-26.html)
+---- Forum: Archiv (/forum-54.html)
+---- Thread: [solved ]awstats problem nach wechsel auf dynamic (/thread-11838.html)



[solved ]awstats problem nach wechsel auf dynamic - fulltilt - 10-08-2010 03:02 AM

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 Big Grin

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>