William A. Rowe, Jr. wrote: > At 06:26 PM 5/5/2005, Paul Querna wrote: > >>Branch URL: >>https://svn.apache.org/repos/asf/httpd/httpd/branches/listen-protocol/ >> >>I have created a branch to: >> >>1. Add a 'protocol' to the Listen Command. (done) >> >>Comments, ideas, alternatives, flames, and code review are welcome. > > > Only a question thus far. How does http-upgrade fit in this schema?
The 'Protocol' only matters for the initial protocol. If the connection later changes or upgrades, it has no effect. So, for http upgrade: # # Listen *:80 http # http is the default Listen *:80 <VirtualHost *:80> SSLEngine optional .... </VirtualHost> The configuration stays exactly the same as it currently is, since http-upgrade is just 'http' as the initial protocol. -Paul
