You are going to have a virtualhost that does not forward all request
to your mongrel... If the request is sent to a mongrel you will ne be
able to render the php file...

SO here are some basics:

<virtualhost>
DirectoryIndex index.php
DocumentRoot "/disk/phpcode"

alias /railscode/javascripts /disk/railscode/public/javascripts
alias /railscode/images /disk/railscode/public/images


<Directory "/disk/phpcode">
  Options FollowSymLinks
  AllowOverride None
  Order allow,deny
  Allow from all
</Directory>

<Directory "/disk/railscode/public">
  Options FollowSymLinks
  AllowOverride None
  Order allow,deny
  Allow from all
</Directory>


<Location "/railscode">
  proxyPass balancer://mongrel/railscode
</Location>


<virtualhost>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to