0

I currently installed redmine on my server, and configured apache2 to run it in a virtualhost over mydomain.com

Thing is I also want to host some extra pages, at mydomain.com/personal, but since redmine is running the page is never found. How can I override this configuration to run both redmine and some personal pages?

rfsbraz
  • 2,101
  • 1
  • 18
  • 26

1 Answers1

1

You need the Alias directive to just create a virtual directory, which maps /public with some other real directory on the filesystem.

Sunny Milenov
  • 21,990
  • 6
  • 80
  • 106
  • If I map an alias to the public directory I'll just see the public folder contents instead of redmine starting page. Am I missing something here? – rfsbraz Jun 22 '11 at 22:50
  • I managed to get it working, I was missing RailsBaseURI. Thanks! – rfsbraz Jun 22 '11 at 23:08