[luau] linux/apache directories

Ray Strode halfline at hawaii.rr.com
Thu Jun 6 22:27:00 PDT 2002


> How can I prevent web browsing of directories under Apache, when a directory
> (such as "images") has no default html file? I want to use the httpd.conf
> file. 
If you want to tuse httpd.conf, the easiest way is to add:


    <Directory "/var/www/images">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>

and then restart apache...of course change /var/www/images to the
absolute unix path of your images directory.

> Hope this is a good place to ask this question. 
Entirely relavent question. Apache's primary platform is Linux.

--Ray




More information about the LUAU mailing list