Web Hosting Talk







View Full Version : All-In-One Apache


CyberScript
08-14-2002, 06:31 PM
Hey,

Do you see anything wrong with using mod_perl to turn apache into a "all-in-one" server (handle email, ftp and web requests all with Apache).

Does this idea interest anyone? I've been thinking about doing this myself and can't think of anything bad. It would run on any OS that supports Apache, which is obviously a stable server and it would be a lot easier to manage virtual accounts and logs.

Any thoughts? Has anyone else tried anything like this?

Shyne
08-14-2002, 06:42 PM
So if apache goes down all the services go down as well?

I think it's easier to handle different pieces of software.

CyberScript
08-14-2002, 06:50 PM
Well you do have a point about apache going down, but in all the years of using apache it has never gone down once for me. I trust apache more then any other piece of software for reliability.

Why do you think it would be easier to handle different pieces of software instead of forming one standard for all services, and only having to update one piece of software.

Thanks for you comments.

CyberScript
08-14-2002, 06:56 PM
Also I forgot to mention that you could run each service on it's own using apache by simply creating seperate config files for each service. So the "one goes down they all go down" comment is taken care of.

JTY
08-14-2002, 07:20 PM
Why use mod_perl w/ Apache, when you could write a Perl daemon?

CyberScript
08-14-2002, 07:30 PM
Well because apache has already taken care of connections, threads and all that stuff. Also, it is a well trusted server.

All mod_perl would be for is to code filters for each service.