How can I run my perl CGI script without apache? This is for testing purposes, so some kind of single-process server that processes only one request at time should be enough for me.
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.
There is nothing preventing you from duplicating the requisite Apache configuration except for the user under which
httpdis going to be run, the interface/port to bind to and possibly thecgi-bindirectory and running a separate copy ofhttpd(with the-foption). That would be the safest way to test the application in the environment it is supposed run.See Starting Apache: