I have an apache web server running an HTTP daemon on port 80. This web server won’t let me start any other http daemons. Is there a way I can link the already-running apache http daemon as an HTTP::Daemon object in perl?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not really, although you could run it on another port and then configure Apache to proxy the request to the other server.
I’d write a PSGI or (if you want to do voodoo) mod_perl application instead.