Hello *,

I have tried to find out any solution how to authenticate/authorized access
to the proxy but I did not found any
good answer to my question.

Let's say that I have my own module which is take care about authentication
to the SSL web pages.
Unfortunatelly I would like to authenticate proxy which is used on
http://127.0.0.1:8000/
I am using following in the apache configuration file.
This section is not written in <VirtualHost _default_:443>
but in HTTP section.

<IfModule mod_proxy.c>
        ProxyRequests Off
        ProxyVia On
        ProxyPass       /term/  http://127.0.0.1:8000/
        ProxyPass       /term/$ http://127.0.0.1:8000/
        ProxyPass       /term/u$        http://127.0.0.1:8000/u
        ProxyPass       /term/(.*)      http://127.0.0.1/public/ajaxterm/$1
        ProxyPassReverse  /term/  http://127.0.0.1:8000/
        ProxyPassReverse  /term/  http://localhost:8000/
        <Proxy *>
                Order deny,allow
                Allow from all
                AuthType SEC
                AuthName "Password Required"
                require valid-user
                satisfy Any
        </Proxy>
</IfModule>

Unfortunatelly when I write down to the URL of browser
https://<IP_Address>/term
than after authentication I have received
HTTP Error 404 HTTP Not Found (Not Found).

What I have mistake in httpd.conf file?
-- 
Best Regards / S pozdravem
Petr Hracek

Reply via email to