I'm assuming all of your configuration below is *not* in a VirtualHost block? If so, what's the value of your ServerName directive? It should read:
ServerName mymachinename I know the same ProxyPass and ProxyPassReverse directives (with the proper ServerName) work if you put it in a VirtualHost block, but I'm not entirely sure otherwise. -Ripta > Alias /myapp "c:/rails/myapp/public" > Alias /images "c:/rails/myapp/public/images" > Alias /stylesheets "c:/rails/myapp/public/stylesheets" > Alias /javascripts "c:/rails/myapp/public/javascripts" > <Directory "c:/rails/myapp/public"> > Options Indexes FollowSymLinks > AllowOverride none > Order allow,deny > Allow from all > </Directory> > > ProxyPass /images ! > ProxyPass /stylesheets ! > ProxyPass /javascripts ! > ProxyPass /myapp/ http://127.0.0.1:4000/ > ProxyPass /myapp http://127.0.0.1:4000/ > ProxyPassReverse /myapp/ http://127.0.0.1:4000/ > ProxyPassReverse /myapp http://127.0.0.1:4000/ > ======= > > And there's following like in Apache's httpd.conf > > Include conf/httpd-webrick-proxy.conf -- Posted via http://www.ruby-forum.com/. _______________________________________________ Mongrel-users mailing list Mongrel-users@rubyforge.org http://rubyforge.org/mailman/listinfo/mongrel-users