views:

33

answers:

0

Hi all, i have rails application named src and am running mongrel as server to handle all request ,now am looking to configure APACHE as front end server, so i made some changes to http.conf file like this

ServerName src

DocumentRoot  C:/InstantRails-2.0-win/rails_apps/src/public/

ProxyPass /src/ http://localhost:3000/

ProxyPassReverse / http://localhost:3000

nd i some changes to windows host file, i added following line to it. 127.0.0.1 src

When i provide http://src url to IE,i seen the index page present in public foler,but i tried to open the other linK i got page not found... this how i provided link in idex page

        <li><a href="http://src/streams/new"&gt;Upload Elementary Stream</a></li>

what could be the problem and one thing more while running apache ,i have to stop mongrel from running??