I have just brought a RH 8.0 webserver online for internal systems monitoring (BigBrother), and I am receiving this error in my logs:
Symbolic link not allowed: /var/www/html/bb
I'm stumped, it's my first run in with Apache 2.0 and after reading
everything I could at apache.org concerning SymLink anything I think I
confused myself. What do I need to do to rectify this?
Thanks in advance, Paul
HEllo,
Can you check the following things in your httpd.conf file:
<Directory "/var/www/html"> Options -Indexes +FollowSymLinks AllowOverride Done DirectoryIndex index.html order allow,deny allow from all </Directory>
Or you can do the following things: (this is more secure)
a) remove the symlink /var/www/html/bb b) Change this to your httpd.conf
Alias /bb /path_to_bb <Directory "path_to_bb"> Options -Indexes +FollowSymLinks AllowOverride Done DirectoryIndex index.html order allow,deny allow from all </Directory>
rgrds,
Bart
-- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list