Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Acessing Data on 3 HDDs |
|
Author |
|
RDProgrammer
Joined: 20 Apr 2007 Posts: 2 Location: Tulsa, OK
|
Posted: Fri 20 Apr '07 10:34 Post subject: Acessing Data on 3 HDDs |
|
|
Hi all,
I have Apaches 2.2 and have it configured with the document root as being my E drive (I have data on my D, E, and F drives for organizational purposes). What I want to do is allow the system to access data from the D and F drives so that when I log into my document root (I have a subdomain pointed to my IP address) I can access data from all three drives. I do not care what form (GUI wise) this takes as I am merely using Apache as a way to access my Home Server remotely.
Thank you,
Richard |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Fri 20 Apr '07 16:42 Post subject: |
|
|
You could use mod_alias
e.g.
Code: |
Alias /www_data/ "F:/www_data/"
<Directory "F:/www_data">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
|
|
|
Back to top |
|
RDProgrammer
Joined: 20 Apr 2007 Posts: 2 Location: Tulsa, OK
|
Posted: Fri 20 Apr '07 22:31 Post subject: |
|
|
I have tried adding just that and it did work. I used the code:
Code: | Alias /videos/ "D:/videos/"
<Directory "D:/videos">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory> " |
then I also tried it with this added
Code: | <Directory />
Options FollowSymLinks
AllowOverride None
order allow,deny
Allow from all
Satisfy all
</Directory> |
Thanks to all, if anyone would be willing to chat with me, it'd be much appreciated. AIM/msn: RDProgrammer(/@hotmail.com)
thanks
Richard |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Sat 21 Apr '07 15:54 Post subject: |
|
|
Did you tried http://127.0.0.1/videos/ ? or with out the slash at the end? |
|
Back to top |
|
|
|
|
|
|