Re: SCGIMount and SCGIHandler
David Binger <[email protected]>
| Newsgroups | gmane.comp.web.quixote.user |
|---|---|
| Message-ID | <[email protected]> |
On Oct 31, 2005, at 1:14 PM, Matt Patterson wrote:
> It just occurred to me that I could use SCGIHandler / SCGIServer in
> a LocationMatch directive to allow Apache to continue to serve some
> top-level directories (my app mounts at /), which I couldn't do
> with SCGIMount, because you can only use it in a server context.
Does it help that you can do the following?
SCGIMount / 127.0.0.1:3002
<LocationMatch "^/images/.*">
SCGIHandler off
</LocationMatch>