Thank you Michael,
I changed the bluequartz.conf file and restarted Apache and got the symbolic link to work now.
Sorry for miss print link should be http://mirrors.our-klan.com.
This gives me my /Home folder space back and I'll just put in another 250gig drive for the Mirrors
On the Promise Ultra 133 card.
David
Hi David,
> I can click on ~dag.wieer.com in midnight commander and go to the folder,
> But when I hyperlink it to http://mirror.our-klan/~dag.wieer.com the link
> won't work.
>
> I'm just creating a hyperlink in index.html to goto the other drive.
> Any suggestions on how to go about this.
Apache on BlueQuartz is configured to not follow symbolic links - unless the
owner matches.
To get around this, edit this file as root:
/etc/httpd/conf.d/bluequartz.conf
What you're looking for is this Directory container:
# be more restrictive within a site
<Directory /home/.sites/*/*/>
Options -FollowSymLinks +SymLinksIfOwnerMatch
</Directory>
Change it to this:
# be more restrictive within a site
<Directory /home/.sites/*/*/>
Options +FollowSymLinks +SymLinksIfOwnerMatch
</Directory>
And then restart Apache:
/etc/init.d/httpd restart
--
With best regards,
Michael Stauber