0

VPS(centos 6) を購入し、tuleap をインストールしました。http://tuleap-documentation.readthedocs.org/en/latest/installation-guide/full-installation.htmlのガイドラインに従って Web アプリケーションをインストールすると、 http:// を使用してプロジェクトにアクセスできると表示されます。 tuleap.example.com

しかし、まだ VPS の IP アドレスにドメイン名を設定していません。次のいずれかを変更する必要があることはわかっています。しかし、私は変更を認識していません。IPアドレスだけでアクセスできるように誘導してください。


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

前もって感謝します!

4

2 に答える 2

1

ファイアウォールでポートを開いてみてください。

Centos 6 を使用している場合:

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

このリンクが役立つかもしれません: http://ask.xmodulo.com/open-port-firewall-centos-rhel.html

于 2016-02-23T10:44:23.927 に答える
1

You should just have to put you ip adress instead of a domain name wherever it is required in the two files you indicated. Then service httpd restart and it should be working.

于 2015-03-02T10:17:37.893 に答える