Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change 
notification.

The following page has been changed by slive:
http://wiki.apache.org/httpd/ScratchPad/CommonMisconfigurations

The comment on the change is:
Fix a couple config errors in the "good" examples.

------------------------------------------------------------------------------
  Example:
  {{{<Directory />
    # This was changed from the default of AllowOverride None.
-   AllowOverride FileInfo, Indexes
+   AllowOverride FileInfo Indexes
    # Default directives defined below.
  </Directory>
  }}}
@@ -96, +96 @@

  {{{ScriptAlias /cgi-bin/ /var/www/cgi-bin/
  <Directory /var/www/cgi-bin>
    AllowOverride None
-   Options Indexes, ExecCGI
+   Options Indexes ExecCGI
    DirectoryIndex index.cgi
    # Other options defined.
  </Directory>
@@ -107, +107 @@

  {{{Alias /cgi-bin/ /var/www/cgi-bin/
  <Directory /var/www/cgi-bin>
    AllowOverride None
-   Options Indexes, ExecCGI
+   Options Indexes ExecCGI
+   AddHandler cgi-script .cgi
    DirectoryIndex index.cgi
    # Other options defined.
  </Directory>

Reply via email to