I am running Apache with several virtualhosts.
To configure Citadel, I am running WebCit along with Apache (which is recommended option by Citadel).
Apache should ideally forward ctdl.example.com to 127.0.0.1:2000. But apache is not accepting the configuration:
<VirtualHost *:80> ServerName ctdl.example.com ProxyPass / http://127.0.0.1:2000/ ProxyPassReverse / http://127.0.0.1:2000/ </VirtualHost>
But apache is giving error on line 3. Probably because of ProxyPass.
How to fix this?