Hi Friends,

> By the way I am facing an error when I am trying to proxy the thin 
> server via the Apache server. I am getting the DNS failed
> 
> ======================================================
> [Tue Aug 24 23:14:34 2010] [error] [client 127.0.0.1] proxy: DNS lookup 
> failure
> for: www.sssmh.org:3000javascripts returned by /javascripts/jquery.js, 
> referer:
> http://www.sssmh.org/
> ======================================================

I found the solution for the DNS lookup issue. Finally, as usual, there 
was this small thing "/", I forgot after the

Previously, I forgot to put the "/" after the URL 
"http://www.example.org:3000", so was not ale to resolve the URL like
http://www.example.org:3000stylsheets
-----------------------
.
>   ProxyPass / http://www.example.org:3000
>   ProxyPassReverse / http://www.example.org:3000
>   ProxyPreserveHost on
> 
> </VirtualHost>
-----------------------

After inserting the "/" after the URL, it became 
http://www.example.org:3000/ and the corresponding stylesheets URL 
became
http://www.example.org:3000/styleseets.
-----------------------
.
>   ProxyPass / http://www.example.org:3000/
>   ProxyPassReverse / http://www.example.org:3000/
>   ProxyPreserveHost on
> 
> </VirtualHost>
-----------------------

Now I am trying to find if there is a way to launch the thin server as a 
service in the windows environment, if not as a cluster :). Please do 
suggest some things, so that I get some leads and take it forward.

Regards,
Sandy.
-- 
Posted via http://www.ruby-forum.com/.