Hello
I'm using CWP version: 0.9.8.4 on Centos 6 
I try to user nginx as reverse proxy
my site is located in /home/XXX/public_html but when i change the port to 81 it load an other directory 
i tried to add 
<VirtualHost 127.0.0.1:81>
   ServerName 
www.yourwebsite.com   ServerAlias yourwebsite.com
   DocumentRoot /home/xxx/public_html
       <Directory "/home/xxx/public_html">
               Options FollowSymLinks -Includes
               AllowOverride All
               Order allow,deny
               Allow from all
       </Directory>
       RewriteEngine on
</VirtualHost>
but it load always index.html stored in hdocs 
I found out Apache is using another root path as CentOS Web panel is expecting. CWP is storing the config file in: /usr/local/apache/conf/httpd.conf
But Apache is reading the configuration in /etc/httpd/conf/httpd.conf:
Any adea please