https://issues.apache.org/bugzilla/show_bug.cgi?id=54653
Bug ID: 54653
Summary: Suggestion to add https example for forward proxy
Product: Apache httpd-2
Version: 2.5-HEAD
Hardware: PC
OS: Windows XP
Status: NEW
Severity: normal
Priority: P2
Component: Documentation
Assignee: [email protected]
Reporter: [email protected]
Classification: Unclassified
Summary
Current mod_proxy document does not include an example
for https. I would suggest to add an example.
Reference
http://httpd.apache.org/docs/current/mod/mod_proxy.html
= Current =
Forward Proxy
ProxyRequests On
ProxyVia On
<Proxy *>
Require host internal.example.com
</Proxy>
= Current =
= Suggested =
Forward Proxy
ProxyRequests On
ProxyVia On
<Proxy *>
Require host internal.example.com
</Proxy>
<Proxy *:443>
Require host internal.example.com
</Proxy>
= Suggested =
Also add following minor remarks, as well.
It is because the ssl communication should be established
between server and client, one can not specify access control
with HTTPS protocol using detail URL.
(If you add "/" in <Proxy >, it does not work as you specified.)
Bad Example
<Proxy example.com:443/news/>
Good Example
<Proxy example.com:443>
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]