I have two applications running in the same server and I would like to have one served from subpath in the url (i.e):

  • foo.com -> /var/www/foo
  • foo.com/bar -> /var/www/bar

I'm triyng to do an alias but is not working:

<VirtualHost *:80>
  ServerAdmin webmaster@foo.com
  ServerName foo.com
  DocumentRoot /webapps/foo/current/public
  <Directory /webapps/foo/current/public>
    AllowOverride all
    Options -MultiViews
  </Directory>
  RailsEnv staging
  Alias /blog /webapps/blog/current
 <Directory /webapps/blog/current>
   allow from all
   Options +Indexes
 </Directory>

Do you know why this is not working?

I also tried serverpath directive without success.

Do you know how to achieve this?

Thanks in advanced.

link|improve this question

78% accept rate
Is your virtualhost working at all? Cos if you need to access it via www. as well as the root of the domain, I would say you need a ServerAlias www.foo.com in there... – DaveRandom Aug 26 '11 at 17:52
Also, does either app use any mod_rewriteing? – DaveRandom Aug 26 '11 at 17:56
Oh sorry, actually the address is without the www. I fixed that on the post. The virtualhost is working, I'm able to access it, but if I go to /blogs/ it does nothing. Both applications have mon_rewrite inside their .httaccess – Rafael Aug 26 '11 at 19:02
What do you get? A 404? And what is in the Apache logs? And are you using a [PT] on you rewrite rules for the /blogs directory? – DaveRandom Aug 26 '11 at 19:09
I get a 404 that is handled by /var/www/foo. I don't have a [PT] rewrite rule. Actually I don't have a rewrite for the /blog... I'm using for other things. Should I have a rewrite and the alias in order to make it work? – Rafael Aug 26 '11 at 20:21
show 3 more comments
feedback

1 Answer

I found solution for this and posted in my blog:

http://www.rafael-chacon.com/post/9903470026/rails-wordpress-apache-integration

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.