<programlisting>
<Directory /var/www/html/bugzilla>
AddHandler cgi-script .cgi
-Options +Indexes +ExecCGI
-DirectoryIndex index.cgi
-AllowOverride Limit FileInfo Indexes
+Options +ExecCGI
+DirectoryIndex index.cgi index.html
+AllowOverride Limit FileInfo Indexes Options
</Directory>
</programlisting>
<para>
These instructions: allow apache to run .cgi files found
within the bugzilla directory; instructs the server to look
- for a file called <filename>index.cgi</filename> if someone
+ for a file called <filename>index.cgi</filename> or, if not
+ found, <filename>index.html</filename> if someone
only types the directory name into the browser; and allows
Bugzilla's <filename>.htaccess</filename> files to override
- global permissions.
+ some global permissions.
</para>
<note>