我的情况: 我已经安装taiga 2 天了。最后我安装了后端。当我做
curl 127.0.0.1:8000/api/v1/
它可以正确回答,但是当我对我的公共 IP 执行相同操作时,它会回答连接错误。
以其他方式,我想访问前端。官方指南说你必须在静态文件web服务器下暴露dist目录
我将它安装在我的Centos 6.5 Vps上,使用 apache 作为 http 服务器。
我尝试将/etc/httpd/conf.d/taiga.conf创建为
<VirtualHost *:9000>
ServerName emilio
ServerAdmin mail@mail.com
DocumentRoot /home/taiga/taiga-front-dist/dist/
ErrorLog logs/redmine_error_log
<Directory "/home/taiga/taiga-front-dist/dist/">
Options Indexes ExecCGI FollowSymLinks
Order allow,deny
Allow from all
AllowOverride all
</Directory>
但是当我访问 miip:9000 它不显示 index.html 或任何东西。
所以,我的问题是我如何为这个端口的前端提供服务? 任何帮助将不胜感激。
问候