I'm trying to set up my apache
to access a folder that is in my HD
with windows
, I have 2 hds
on the machine, one runs ubuntu
and the other windows
.
The apache
is already installed, including I already created the file:
/etc/apache2/sites-avaliable/vip.localhost.conf
I've added the lines:
ServerName vip.localhost
ServerAlias vip.localhost
ServerAdmin webmaster@localhost
DocumentRoot /media/name/2E4C85684C852BA1/development
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log
I also made the change in the hosts
file, but when I try to access vip.localhsot
I get the code:
403 Forbiden
In the case says that I do not have access to this directory.
Anyone know what I have to do? Do I need to mount a folder on ubuntu
so it can access my files? If so, how do I do it?