hi all,
I'm looking at an unsual conifguration for apache.
I currently have it listening on port 80 for http and 443 using mod_ssl
I want to stop http traffic listening, so I want to stop port 80 from listening full stop.
This way apache only listening on 443 and responds with mod_ssl
(I know there are other ways of doing this but this is the way I have to go at the moment)
If I set the Listen directive to 443 - then apache will refuse to start as that port will already be in use (by mod_ssl)
If I comment out the Listen directive then apache won't start as it needs a socket to bind too.
How (if possible) can I set apache to not listen on any ports other than mod_ssl on 443.
Thanks