vote up 1 vote down star

I have configured Tomcat 6 to serve Perl CGI scripts. That part is well documented and works ok for me.

But, when a browser requests an image from this CGI dir, Tomcat's CGI servlet refuses to serve the image, displaying instead merely the url of the image. I believe this is a security feature to prevent users from seeing the contents of such files in general.

How do I configure tomcat, the tomcat CGI servlet, and/or the tomcat default servlet, to actually serve up an image file which happens to be located in my CGI dir? Is that possible?

flag

78% accept rate

4 Answers

vote up 1 vote down

Why do you want to put images inside your CGI directory? Shouldn't they be under the normal document root?

If you are constructing relative paths in the output of your script, add a BASE tag to the HTML head, or make the links absolute URLs.

link|flag
vote up 0 vote down

Thanks for your response, Brian.

By way of additional background to my question: I'm trying to run the CGI web application Bugzilla. It keeps its images in a folder called 'images' located in the same dir as the .cgi scripts. That arrangement works under the apache webserver, and I'd like to make it work under tomcat too.

Or at least, I'd like to avoid hacking the .cgi scripts which belong to bugzilla web app.

link|flag
You would have to configure the server such that the path to "CGI-BIN"/images is a "normal" content directory. Then again, you shouldn't mix binaries and contents ... imho converter42 is right => install on a supported platform. – lexu Dec 12 '08 at 6:29
yeah, i wish bugzilla was not built that way. – Chinnery Dec 12 '08 at 15:44
that's just one of bugzilla's problems :) Also, you should edit your question instead of providing more details as answers. – brian d foy Dec 12 '08 at 18:52
vote up 1 vote down

Since the Bugzilla Guide includes configuration guidelines for only Apache and MS IIS and google doesn't turn up any posts discussing successful deployment, your best bet would probably be to stick with a documented and supported configuration, Apache or IIS.

link|flag
vote up 0 vote down check

Resolution: I gave up on my "single server" (i.e. the existing Tomcat server) approach and installed Apache as well. Naturally, Bugzilla works much more readily under Apache. No real surprise there.

I conclude that:

  1. Apache has no problem serving image files from under a cgi-bin dir.

  2. Bugzilla developers don't seem to think it's bad to put the image file dir in with the application scripts.

  3. Tomcat's support for cgi-bin is not as rich/extensive as Apache's.

  4. The answer to my original question is: it cannot be done in Tomcat 6.

link|flag
Just because a Bugzilla programmer does something doesn't make it good. You're stuck with what they did for Bugzilla, but don't make the same mistakes in your other work. – brian d foy Dec 12 '08 at 18:56
um ... i'm not doing that in my other work. i was just trying to get bugzilla to run under tomcat. i already explained that. – Chinnery Dec 12 '08 at 20:02

Your Answer

Get an OpenID
or

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