Apache: mod_proxy -> 403 (Debian)
echo hkhmwnx6@dfmtt.ij | perl -pe 'y/a-z/v-za-w/'
- webserver
0 ChrisB
Ich versuche gerade, mit Hilfe von mod_proxy einen anderen http-daemon, der auf port 8000 läuft (und auch kein 403 liefert) auf Port 80 (Apache) unter einem VHost verfügbar zu machen. VHosts funktionieren Prinzipiell
Die Konfiguration sieht momentan so aus:
<VirtualHost *:80>
ServerName foo.bar.baz.org
ServerAdmin webmaster@bar.baz.org
<Location />
ProxyPass http://127.0.0.1:8000/
ProxyPassReverse http://127.0.0.1:8000/
Order Allow,Deny
Allow from all
</Location>
</VirtualHost>
Beim Aufruf von http://foo.bar.baz.org erscheint konstant 403 Forbidden. Ich habe auch bereits versucht, die Zeilen mit Proxy außerhalb von Location anzubringen, http://httpd.apache.org/docs/2.0/vhosts/examples.html#proxy auch bereits.
proxy.conf in /etc/apache2/modules-available/ sieht (falls von Bedeutung) so aus: http://paste.pocoo.org/show/39068/
Hi,
Beim Aufruf von http://foo.bar.baz.org erscheint konstant 403 Forbidden.
Und was sagen die Logfiles?
MfG ChrisB