LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Apache2: How to allow Apache to display contents in the file system? (https://www.linuxquestions.org/questions/linux-software-2/apache2-how-to-allow-apache-to-display-contents-in-the-file-system-141695/)

vous 02-03-2004 03:17 AM

Apache2: How to allow Apache to display contents in the file system?
 
Hello All,

I'm trying to let Apache2 display my file system...these are the default restrictions for the directory:

<Directory />
Options -All -Multiviews
AllowOverride None
<IfModule mod_access.c>
Order deny,allow
Deny from all
</IfModule>
</Directory>


What must I replace these parameters with so that everyone can look into the contents of the directory?

vous 02-03-2004 05:36 AM

FYI,

this got us through....

<Directory /var/www/html/NAME_OF_YOUR_DIR>
Options Indexes FollowSymLinks
</Directory>

I don't know if this is an ideal setting, but it'll do it ;-)


All times are GMT -5. The time now is 06:23 AM.