My current setup:
I’ve been working on setting up Taiga for the past couple of days. The backend installation is complete and working fine. When I test with curl localhost:8000/api/v1/
everything works correctly, but using my public IP results in connection errors.
Now I need help with the frontend configuration. The documentation mentions that I should expose the dist folder through a static web server.
I’m running this on a CentOS 6.5 VPS using Apache as my web server.
I created a configuration file at /etc/httpd/conf.d/taiga-frontend.conf with these settings:
<VirtualHost *:9000>
ServerName myserver
ServerAdmin admin@example.com
DocumentRoot /home/taiga/taiga-frontend-dist/dist/
ErrorLog logs/taiga_frontend_error_log
<Directory "/home/taiga/taiga-frontend-dist/dist/">
Options Indexes ExecCGI FollowSymLinks
Order allow,deny
Allow from all
AllowOverride all
</Directory>
</VirtualHost>
However, when I navigate to myip:9000, nothing loads - no index.html or any content appears.
My main question is: how can I properly configure Apache to serve the frontend files on this port?
Any assistance would be greatly appreciated.
Thanks!