| Davide Bianchi 2004-09-23, 9:07 am |
| On 2004-09-20, Tarun Jain <tjain@hotmail.com> wrote:
> So I want to make sure that Apache serves the images and not JRun. I
> tried to use mod_alias to setup aliases for the image request
> directories. But Apache was still handing off the image requests to
> JRun. What can I do make sure that Apache serves the pages ?
Afaik, there is no way. The problem is that the whole directory/
application is handed over to JRun, and he just returns the completed
page to Apache to be served.
You could put the images in a different directory, outside the
JRun's application dir, but it will make your application much more
difficult to handle.
For these reasons I gave up with JRun and turned to Tomcat, that is
also for free.
Davide
--
The primary purpose of the DATA statement is to give names to
constants; instead of referring to pi as 3.141592653589793 at every
appearance, the variable PI can be given that value with a DATA
statement and used instead of the longer form of the constant. This
also simplifies modifying the program, should the value of pi change.
-- FORTRAN manual for Xerox Computers
|