What parameter in the httpd.conf file enables the 'Indexes' feature for mod_autoindex in Apache?

To enable the 'Indexes' feature for mod_autoindex in Apache, you need to set the "Options" directive in the httpd.conf file to include the "Indexes" option. This will allow Apache to generate directory listings for directories that do not have an index file. In the httpd.conf file, you can add or modify the Options directive to include the Indexes option. For example: ``` <Directory /path/to/directory> Options Indexes FollowSymLinks </Directory> ``` This will enable directory listings for the specified directory. Remember to restart Apache after making changes to the httpd.conf file for the changes to take effect.