to install jenkins, as the instructions I followed says, I had to create this virtual host:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName ci.company.com
ServerAlias ci
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPreserveHost on
ProxyPass / http://localhost:8080/
</VirtualHost>
Now I cannot access anymore to http://localhost/phpmyadmin. It says:
Status Code: 404
Exception: Stacktrace: (none)
What should I do?
Javi