Here is a situation I have a directory in  /media/7AC03B13C03AD4DB/something  
which is an ntfs drive.
I want to share from this a subdirectory so I go to /var/www/ and create a 
symlink as follows

ln -s /media/7AC03B13C03AD4DB/something  /var/www/new_name 

when the client tries to reach the above folder here is what the response of 
apache is 

192.168.1.3 - - [22/Mar/2011:21:04:38 +0530] "GET / HTTP/1.1" 200 485 "-" 
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; 
AskTbFXTV5/5.9.1.14019)"
192.168.1.3 - - [22/Mar/2011:21:04:43 +0530] "GET /new_name HTTP/1.1" 403 500 
"-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; 
AskTbFXTV5/5.9.1.14019)"


the Apache vhost definition is 

<VirtualHost *:80>
        ServerAdmin webmaster@localhost

        DocumentRoot /var/www
        <Directory />
                Options FollowSymLinks
                AllowOverride None
        </Directory>
        <Directory /var/www/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
        </Directory>

        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
        <Directory "/usr/lib/cgi-bin">
                AllowOverride None
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
                Order allow,deny
                Allow from all
        </Directory>

        ErrorLog /var/log/apache2/error.log

        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn

        CustomLog /var/log/apache2/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
  Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>

What is the mistake I am doing in above?Why is the client browser unable to 
reach to the directory I specified?




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to