Re: mod_ruby gets 503 error

Brian Candler <[email protected]> Sun, 22 Jan 2006 11:04:11 +0000
Newsgroups gmane.comp.apache.mod-ruby
Message-ID <[email protected]>
On Sat, Jan 21, 2006 at 09:02:14PM -0800, CyBerHigh wrote:
> Correction, It is a 403 error that I am receaving.  Sorry about that. 

403 = Forbidden.

Can you see anything:

(1) in the Apache error log
(2) in a HTTP response when issued manually, e.g.

$ telnet localhost 80
GET /foo.rb HTTP/1.0       << Note this is CASE-SENSITIVE
Host: www.foo.com

(end with a blank line, i.e. Enter by itself)

Also, what happens if you remove the AddType line? The example at
http://wiki.modruby.net/en/?InstallGuide
is exactly the same as what you're trying to do, except they use *.rbx
instead of *.rb

Regards,

Brian.