It is not that uncommon that people require two apache (differently configured) instances running side by side on a single machine. The most common reason to do so is performance. A typical setup would be: - a lightweight apache with only few modules loaded with mod_proxy - apache with scripting modules (i.e. php) The lightweight apache listens on port 80 and servers static content such as images, text files or binaries and proxies all requests on php files to the other apache. On a high traffic server this does save LOTS of memory (one usually has keepalive set to something like 5 seconds. with apache with mod_php enabled serving an image equals to process consuming 5-20MB, a lightweigt apache needs ~1MB) Sofar AFAIK this can be done only by having an additional modified init script which is kinda ugly. It would be cool to have some standardized more elegant way of handling this as it is, for example, in the mysql package... Reproducible: Always
Yeah feel free to attach a patch... :)
i don't think we can/will/want do this in the near future ...