View previous topic :: View next topic |
Author |
Message |
Tinitus Veteran
Joined: 20 Sep 2004 Posts: 1754
|
Posted: Wed May 11, 2005 3:47 pm Post subject: apache und module |
|
|
Hallo,
wie kann ich eigentlich feststellen, welche Module beim Apache geladen sind?
G. Roland |
|
Back to top |
|
|
Marlo Veteran
Joined: 26 Jul 2003 Posts: 1591
|
Posted: Wed May 11, 2005 4:38 pm Post subject: |
|
|
Hi Tinitus,
zunächst in /etc/apache2/conf/apache2.conf müssen die Zeilen, die mit
beginnen frei sein. Also ohne #
Dann kannst du in der /etc/apache2/conf/commonapache2.conf folgendes freischalten:
Code: |
<IfModule mod_status.c>
<Location /server-status>
SetHandler server-status
<IfModule mod_access.c>
Order deny,allow
Deny from all
allow from 127.0.0.1
Allow from .meintolles.net
</IfModule>
</Location>
</IfModule>
und
<IfModule mod_info.c>
<Location /server-info>
SetHandler server-info
<IfModule mod_access.c>
Order deny,allow
Deny from all
allow from 127.0.0.1
Allow from .meintolles.net
</IfModule>
</Location>
</IfModule> |
Danach und einem reload einfach mit:
Code: |
http://meintolles.net/server-status
oder
http://meintolles.net/server-info
|
sich das Ergebnis anzeigen lassen.
Grüße
Ma _________________ ------------------------------------------------------------------
http://radio.garden/ |
|
Back to top |
|
|
Tinitus Veteran
Joined: 20 Sep 2004 Posts: 1754
|
Posted: Wed May 11, 2005 5:06 pm Post subject: |
|
|
Hey Danke
G. Roland |
|
Back to top |
|
|
Marlo Veteran
Joined: 26 Jul 2003 Posts: 1591
|
Posted: Wed May 11, 2005 5:54 pm Post subject: |
|
|
no prob,
gib doch noch ein solved aus!
Ma _________________ ------------------------------------------------------------------
http://radio.garden/ |
|
Back to top |
|
|
|