Re: [EMAIL PROTECTED] Proper configuration of FollowSymLinks in 2.0.54

2005-09-09 Thread Forrest Aldrich
I stripped down the httpd.conf to barebones, using these directives: Directory /     Options All     AllowOverride All     Order Deny,Allow     Deny from all /Directory There is a symlink in DocumentRoot "mp3share" pointing to this:    Directory "/usr/local/shares/forrie/mp3"    

Re: [EMAIL PROTECTED] Proper configuration of FollowSymLinks in 2.0.54

2005-09-09 Thread Joshua Slive
On 9/9/05, Forrest Aldrich [EMAIL PROTECTED] wrote: I stripped down the httpd.conf to barebones, using these directives: Directory / Options All AllowOverride All Order Deny,Allow Deny from all /Directory There is a symlink in DocumentRoot mp3share pointing

Re: [EMAIL PROTECTED] Proper configuration of FollowSymLinks in 2.0.54

2005-09-09 Thread Forrest Aldrich
Here is the complete httpd.conf, feel free to comment beyond what I pointed out in my last message. DocumentRoot "/usr/local/www/data" ServerRoot "/usr/local" Timeout 300 KeepAlive On MaxKeepAliveRequests 100 KeepAliveTimeout 15 PidFile /var/run/httpd.pid User www Group www ServerAdmin

Re: [EMAIL PROTECTED] Proper configuration of FollowSymLinks in 2.0.54

2005-09-09 Thread Joshua Slive
On 9/9/05, Forrest Aldrich [EMAIL PROTECTED] wrote: I stripped down the httpd.conf to barebones, using these directives: Directory / Options All AllowOverride All Another issue is there. Do you have .htaccess files with Options directives? Does it help to turn AllowOverride

Re: [EMAIL PROTECTED] Proper configuration of FollowSymLinks in 2.0.54

2005-09-09 Thread Forrest Aldrich
There is no .htaccess file there, I changed the config per below "AllowOverride None" and the same problem occurs: Forbidden You don't have permission to access /mp3share on this server. Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the

Re: [EMAIL PROTECTED] Proper configuration of FollowSymLinks in 2.0.54

2005-09-09 Thread Joshua Slive
On 9/9/05, Forrest Aldrich [EMAIL PROTECTED] wrote: There is no .htaccess file there, I changed the config per below AllowOverride None and the same problem occurs: From httpd.conf there is one other place to check: ssl.conf. But assuming you don't find it there, lets try a different tactic.

Re: [EMAIL PROTECTED] Proper configuration of FollowSymLinks in 2.0.54

2005-09-09 Thread Joshua Slive
On 9/9/05, Joshua Slive [EMAIL PROTECTED] wrote: 4. ln -s test2/index.txt test/symlink.txt Oops. That's obviously not exactly what I did, since it creates a broken symlink. More like ln -s ../test2/index.txt test/symlink Joshua.

Re: [EMAIL PROTECTED] Proper configuration of FollowSymLinks in 2.0.54

2005-09-09 Thread Forrest Aldrich
Okay here's what happened. My config: User www Group www ServerName forrie.com DocumentRoot /home/test Listen *:8091 Directory / Options All /Directory ErrorLog    /var/log/httpd-error.log If I do a "ln -s /usr/local/shares/forrie/files ." into the above DocumentRoot, I get the

Re: [EMAIL PROTECTED] Proper configuration of FollowSymLinks in 2.0.54

2005-09-09 Thread Joshua Slive
On 9/9/05, Forrest Aldrich [EMAIL PROTECTED] wrote: Okay here's what happened. My config: User www Group www ServerName forrie.com DocumentRoot /home/test Listen *:8091 Directory / Options All /Directory ErrorLog/var/log/httpd-error.log If I do a ln

Re: [EMAIL PROTECTED] Proper configuration of FollowSymLinks in 2.0.54

2005-09-09 Thread Forrest Aldrich
[ snip ] Ok. I think I've got it. Try this: mkdir /home/test2/test3/ echo hello /home/test2/test3/index.txt ln -s /home/test2/test3/ /home/test/test3 chmod -x /home/test2 lynx http://localhost:8091/index.txt A similar setup gave me the error you found. The problem is the file permissions

Re: [EMAIL PROTECTED] Proper configuration of FollowSymLinks in 2.0.54

2005-09-08 Thread Joshua Slive
On 9/8/05, Forrest Aldrich [EMAIL PROTECTED] wrote: What is the proper way to configure FollowSymLinks in 2.0.54? I'm having a problem getting this to work at all - after reading the manual, searching for examples, it seems fairly straightforward; however, every combination I try fails