Top Menu

Jump to content
Home
    Modules
      • Projects
      • Activity
      • Work packages
      • Gantt charts
      • Calendars
      • Team planners
      • Boards
      • News
    • Getting started
    • Introduction video
      Welcome to OpenProject Community
      Get a quick overview of project management and team collaboration with OpenProject. You can restart this video from the help menu.

    • Help and support
    • Upgrade to Enterprise edition
    • User guides
    • Videos
    • Shortcuts
    • Community forum
    • Enterprise support

    • Additional resources
    • Data privacy and security policy
    • Digital accessibility (DE)
    • OpenProject website
    • Security alerts / Newsletter
    • OpenProject blog
    • Release notes
    • Report a bug
    • Development roadmap
    • Add and edit translations
    • API documentation
  • Sign in
      Forgot your password?

      or sign in with your existing account

      Google

Side Menu

  • Overview
  • Activity
    Activity
  • Roadmap
  • Work packages
    Work packages
  • Gantt charts
    Gantt charts
  • Calendars
    Calendars
  • Team planners
    Team planners
  • Boards
    Boards
  • News
  • Forums

Content

Support Installation & Updates
  1. OpenProject
  2. Forums
  3. Support Installation & Updates
  4. How to get working 2 different Open Project installations on the same server

How to get working 2 different Open Project installations on the same server

Added by v s almost 10 years ago

Hi all,

I have managed to install Open Project on a server and it’s working fairly well; so far, so good (although I somewhat struggled with LDAP authentication to say the least, but that’s another story :p ).

The problem is that in my company, each project must really remain independent from the others, and the fact that some settings in Open Project affect the whole installation (hence every project managed by Open project) and can not be set individually per project is definitely an issue for us ( Custom fields for instance).

Obviously I could just install Open project on another server, but in terms of resources consumed overall (a second OS, Apache Web server, MySQL DB, and so on …), that’s far from being an ideal situation.

So I would like to know is that’s possible to have 2 different setups of Open Project working properly on the same physical server (or Virtual Machine, it doesn’t matter) and if so, how should I proceed?

Thank you in advance for helping me.


Replies (1)

RE: How to get working 2 different Open Project installations on the same server - Added by Oliver Eckle over 9 years ago

Hi,
i was able to run openproject on the same apache like some other stuff by doing that:

Modifying /etc/apache2/ports.conf:

Listen 80
Listen 81

Also modify /etc/apache2/sites-available/openproject.conf

Include /etc/openproject/addons/apache2/includes/server/*.conf

<VirtualHost *:81>
ServerName shuttle-dev
DocumentRoot /opt/openproject/public

ProxyRequests off

Include /etc/openproject/addons/apache2/includes/vhost/*.conf

ProxyPass / http://127.0.0.1:6000/ retry=0
ProxyPassReverse / http://127.0.0.1:6000/

</VirtualHost>

After that openproject was available on port 81, while the rest of the stuff was available on default port 80.

So i guess that could help you with the apache configuration. Add several virtual hosts for the openproject installations and apache should work. The openproject config ./conf.d/database allows you to use several databases so that should also work. Hopefully i could help you.

Oli

  • (1 - 1/1)
Loading...