<VirtualHost *:80> ServerName app.example.com DocumentRoot "/home/applications/myproject/web" DirectoryIndex index.php Alias /sf /usr/share/pear/data/symfony/web/sf <Directory "/usr/share/pear/data/symfony/web/sf"> AllowOverride All Allow from All </Directory> <Directory "/home/applications/myproject/web"> AllowOverride All Allow from All </Directory></VirtualHost>
6/7/2008 8:53:22 PM
so you're saying that if you specify app.example.com in your browser you're given the content for example.com from the default DocumentRoot? do you have the following option in your httpd.conf file?NameVirtualHost *:80Also, if this is RHEL, don't forget to set the "httpd_enable_homedirs" SELinux boolean
6/7/2008 11:58:35 PM