You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by solo turn <so...@yahoo.com> on 2003/07/23 15:57:33 UTC

[users@httpd] mod_proxy: client denied by server configuration: proxy:http://otherserver

hi,

i try to connect to http://myserver.com:10443/other, and get a 
permission denied on debian.

in the myserver-conf file, there is a proxy pass for this path to 
another server:

<VirtualHost _default_:10443>
       .... debian defaults ....
 
        <Directory proxy:http://otherserver>
                Order Allow,Deny
                Allow from all
        </Directory>
#       ProxyRequests on
        ProxyPass        /other http://otherserver
        ProxyPassReverse /other http://otherserver
        AllowCONNECT 80 10443

</VirtualHost>


and the log says:

[Wed Jul 23 13:15:28 2003] [error] [client <ip-adress of browser>] 
client denied by server
configuration: proxy:https://otherserver

did i miss something?  i also tried to switch on proxyrequests too, but 
it did not help.

both servers work for themselves.


__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


RE: [users@httpd] mod_proxy: client denied by server configuration: proxy:http://otherserver

Posted by Jeff Cohen <su...@gej-it.com>.
Your configuration should be:

Listen 10443
VirtualHost *:10443

<VirtualHost *:10443>
ServerName ....
ProxyPass /other http://server2.com
ProxyPassReverse /other http://server2.com
</VirtualHost>

If you can tell what port server2.com is running on, that might be easier to
help you.
Also, give some more info whether you are using NameVirtualHost or
VirtualHost.

All the best,
Jeff Cohen
Support@GEJ-IT.com
Tel. (416) 917-2324
www.GEJ-IT.com
GEJ-IT Networks!



> -----Original Message-----
> From: solo turn [mailto:soloturn99@yahoo.com]
> Sent: Wednesday, July 23, 2003 9:58 AM
> To: apacheusers
> Subject: [users@httpd] mod_proxy: client denied by server configuration:
> proxy:http://otherserver
> 
> hi,
> 
> i try to connect to http://myserver.com:10443/other, and get a
> permission denied on debian.
> 
> in the myserver-conf file, there is a proxy pass for this path to
> another server:
> 
> <VirtualHost _default_:10443>
>        .... debian defaults ....
> 
>         <Directory proxy:http://otherserver>
>                 Order Allow,Deny
>                 Allow from all
>         </Directory>
> #       ProxyRequests on
>         ProxyPass        /other http://otherserver
>         ProxyPassReverse /other http://otherserver
>         AllowCONNECT 80 10443
> 
> </VirtualHost>
> 
> 
> and the log says:
> 
> [Wed Jul 23 13:15:28 2003] [error] [client <ip-adress of browser>]
> client denied by server
> configuration: proxy:https://otherserver
> 
> did i miss something?  i also tried to switch on proxyrequests too, but
> it did not help.
> 
> both servers work for themselves.
> 
> 
> __________________________________
> Do you Yahoo!?
> Yahoo! SiteBuilder - Free, easy-to-use web site design software
> http://sitebuilder.yahoo.com
> 
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org