Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 102211 - Wrong template in standard configuration of apache
Summary: Wrong template in standard configuration of apache
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Server (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Apache Team - Bugzilla Reports
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-08-12 03:04 UTC by Christian Lerrahn
Modified: 2005-09-17 19:47 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Christian Lerrahn 2005-08-12 03:04:47 UTC
In apache-2.0.54-r8 (current with keyword x86) there's a template for the use of
mod_proxy in the /etc/apche2/conf/commonapache.conf. It lokks like this

#<IfModule mod_proxy.c>
#    ProxyRequests On
#    <Directory proxy:*>
#        Order deny,allow
#        Deny from all
#    </Directory>
# ...

This is Apache 1 style and doesn't seem to work in Apache 2. If you just
uncomment these lines, you'll have an open proxy!!!

It should be

#<IfModule mod_proxy.c>
#    ProxyRequests On
#     <Proxy *>
#        Order deny,allow
#        Deny from all
#     </Proxy>
# ...

instead.

Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 Michael Stewart (vericgar) (RETIRED) gentoo-dev 2005-09-17 19:47:59 UTC
This is fixed in new-style configuration.