Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating an online digital repository for my company. We are using several technologies and tying them together. We will be using Drupal, GitlabsHQ, and Resourcespace and tying the functionality of each of these into what will appear to the end user as one cohesive site.

Ideally we would like to use 1 domain. My question is how can we have a setup that looks like this.

  • mydomain.com -> drupal
  • mydomain.com/home -> drupal(same as above)
  • mydomain.com/media -> resourcespace
  • mydomain.com/books -> gitlabs

This would fine as well "mydomain.com/books/ -> gitlabs"

On the server side of things we would like to keep all three of those systems in their own separate folders. Here is an example of what we would like our sites folder to look like.

  • www/drupal
  • www/resourcespace
  • www/gitlabs

We are installing on an Ubuntu 12.04 LTS Linode. A standard LAMP for Drupal and Resourcespace, and a NGINX server for Gitlabs. Thank you for your help it is greatly appreciated.

share|improve this question
You have to set up nginx as a reverse proxy. It will have two upstreams: one is Apache, and the other one is Unicorn (for Gitlab). The first one is included in nginx server examples, the other one is described in Gitlab's documentation. – Alessandro Vendruscolo Nov 30 '12 at 10:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.