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. Changing from localhost to IP address

Changing from localhost to IP address

Added by Dustin Beuerlein over 5 years ago

To setup an actual demo of this for my team, I've installed the system, figured out everything that the documentation is missing (which is a lot) and finally having a working demo, but it's configured to redirect everything back to 'localhost' by default - this is annoying to say the least. 

Is there a configuration file somewhere in here that I can change this so that I can have my team simply go to the IP of the server that is hosting OP and have them demo it?


Replies (3)

RE: Changing from localhost to IP address - Added by Ricardo Brunetto over 5 years ago

I have the same issue.

I've installed on my domain and it works. But when I navigate to adiminstration/account pages it redirects me to 127.0.0.1.

I've tried to change URL on Settings > General, but it has no effect.

Can someone help me, please?

Thanks in advance.

RE: Changing from localhost to IP address - Added by Adam Ricket over 5 years ago

I've only ever installed OP on a cloud based webserver so I'm not sure if I am going to be much help here as you both want to set it up on a local network... However I will try...

Have you checked that apache is configured correctly?

Have you tried specifying your IP in the openproject.conf virtualhost found in /etc/apache2/sites-available/?

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

<VirtualHost *:80>
  ServerName <OP Server FQDN>
  DocumentRoot /opt/openproject/public

  ProxyRequests off

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

  # Can't use Location block since it would overshadow all the other proxypass directives on CentOS
  ProxyPass / http://127.0.0.1:6000/ retry=0
  ProxyPassReverse / http://127.0.0.1:6000/
</VirtualHost>

so change <VirtualHost *:80> to <VirtualHost x.x.x.x:80>

Have you tried changing the port if there is potentially a conflict with the 000-default.conf site or another site on the same port?

RE: RE: Changing from localhost to IP address - Added by Luis Pereyra over 5 years ago

I have the same issue.

Can someone help me, please?

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