I just install Cyclos4 software into my server. I can access to the app via:
http://IP:8080/cyclos
Now I'm trying to access to the app without having to write the port and the /cyclos
. I follow Cyclos's manual:
http://documentation.cyclos.org/4.5/cyclos-reference/ch01s03.html#d0e474
But I'm totally lose. I have uncomment the line that they say (I don't change any port) and create the following .conf
for the VirtualHost:
<VirtualHost *:80>
DocumentRoot /var/lib/tomcat7/webapps/cyclos
ServerName IP
#Because I don't have domain yet, I want first to be sure that it works
<IfModule mod_jk.c>
JkMount /* ajp13_worker
JkMount / ajp13_worker
</IfModule>
</VirtualHost>
But didn't work. What I'm not doing well? Thanks a lot!