Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding a directory to Apache Server

Tags:

apache

xampp

I have a Windows XP system running XAMPP/Apache. I already have files on an external hard drive that I would like to serve up without moving them to the same drive as the Apache installation.

Here is what I've tried so far:

In the main HTTPD.conf file:

Alias /client_files D:/clients/files

<Directory D:/clients/files>

Options Indexes FollowSymLinks MultiViews

AllowOverride all

   Order Allow,Deny
        Allow from all

</Directory>

But the only result I got was :

Access forbidden!

You don't have permission to access the requested object. It is either read-protected or not readable by the server.

If you think this is a server error, please contact the webmaster.

Error 403

localhost

Apache/2.4.7 (Win32) OpenSSL/1.0.1e PHP/5.5.6

I also tried adding to the HTTPD-VHOSTS.conf file:

ServerName client_files

ServerAlias client_files

DocumentRoot "D:/clients/files"

And also:

<VirtualHost *:80>

ServerAdmin [email protected]

DocumentRoot "D:/clients/files"

ServerName client_files

ServerAlias client_files

ErrorLog "logs/dummy-host.example.com-error.log"

CustomLog "logs/dummy-host.example.com-access.log" common

</VirtualHost>

But neither of these worked either. How in the world can I add another directory to an Apache installation and have it accesible via something like "localhost/client_files"?

Any suggestions?

UPDATE: [SOLVED]

As per @Pedro Nunes's answer below, I now have my httpd.conf file with this section at the end of the file and which includes the line "Require all granted" which Pedro answered with and which now solves the issue:

Alias /client_files D:/clients/files

<Directory D:/clients/files>

Require all granted

Options Indexes FollowSymLinks MultiViews

AllowOverride all

   Order Allow,Deny
        Allow from all

</Directory>

like image 953
The Duke Of Marshall שלום Avatar asked Feb 11 '14 02:02

The Duke Of Marshall שלום


1 Answers

Have you tried Require all granted inside the directory section? This will grant access to all requests.

like image 192
Pedro Nunes Avatar answered Nov 12 '22 23:11

Pedro Nunes