[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] Using symbolic links in DocumentRoot directive



> Where are you adding the FollowSymLinks directive?  Send that part 
> along.  I have a feeling that you placed that on an Options line in a 
> Directory context that is either the wrong one or is getting 
> overwritten somewhere later in the file.

One trial was the following:

    <VirtualHost 216.206.133.54>
    ServerName webhosting.manitu.net
    ServerAlias www.webhosting.manitu.net
    Options +FollowSymLinks
    DocumentRoot /home/sites/site1/web/webhosting
    </VirtualHost>

the other was

    <VirtualHost 216.206.133.54>
    ServerName webhosting.manitu.net
    ServerAlias www.webhosting.manitu.net
    <Directory /home/sites/site1/web/webhosting>
       Options +FollowSymLinks
    </Directory>
    DocumentRoot /home/sites/site1/web/webhosting
    </VirtualHost>

None of them worked.

David. Thank you very much for your affords to help me.


Manuel