vote up 1 vote down star

Hi there, I am experimenting with several languages (Python, Ruby...), and I would like to know if there is a way to optimize my Apache Server to load certain modules only in certain VirtualHost, for instance:

http://myapp1 <- just with Ruby support 
http://myapp2 <- just with Python support
http://myapp3 <- just with Php support
...

Thanks.

flag
Why do you want this? Are you having trouble with the modules interfering with each other? – troelskn Jul 4 at 21:43
Hi, I don't have any problem, I'm just looking for a way not overloading my server with modules that I don't use in certain domains. – juque Jul 5 at 2:19
I wonder if there's a better way to optimize the use of bold in this question. – Sarah Mei Jul 5 at 5:15

5 Answers

vote up 0 vote down check

I think the only way is to have a "proxy" web server that dispatches requests to the real servers ...

The proxy server has a list of domain names -> Server Side language, and does nothing else but transparently redirecting to the correct real server

There are N real server, each one with a specific configuration and a single language supported and loaded ... each server will listen on a different port of course and eventually only on the loopback device

Apache mod_proxy should do the job

My 2 cents

link|flag
vote up 2 vote down

Each Apache worker loads every module, so it's not possible to do within Apache itself.

What you need to do is move your language modules to processes external to Apache workers.

This is done for your languages with the following modules:

link|flag
vote up 0 vote down

Read this Link Virtual Host

link|flag
vote up 0 vote down

I dont think thats possible as,

  1. The same thread/forked process might be serving pages from different Virtualhosts. So if it has loaded only python, what happens when it needs to serve ruby?
  2. For reason 1, certain directives are web server only, and not virtualhost specific. MaxRequestsPerChild, LoadModule etc are such.
link|flag
vote up 0 vote down

My Idea is several apache processes (each one with different config) listening on different addresses and/or ports and a http proxy (squid or apache) in the front redirecting to respective server. This has a possible added advantage of caching.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.