tuleap

Accessing Tuleap project via vps ip address instead of tuleap.example.com


I have purchased a VPS(centos 6) and I installed tuleap in it. After I install the web application as per guidelines given here: http://tuleap-documentation.readthedocs.org/en/latest/installation-guide/full-installation.html it says that the project can be accessed using http://tuleap.example.com

But I didn't set up a domain name yet to my VPS IP address. I know that some changes need to be made either of the following. But I am not aware of the modifications. Please guide me so that I can access using just the IP address alone.

/etc/httpd/conf/httpd.conf
/etc/codendi/conf/local.inc

Thanks in advance!


Solution

  • Try to open your port on the firewall.

    If you are using Centos 6:

    $ sudo iptables -I INPUT -p tcp -m tcp --dport 80 -j ACCEPT
    $ sudo service iptables save
    

    This link might help you: http://ask.xmodulo.com/open-port-firewall-centos-rhel.html