I am fairly new to apache and was a SQL Server database admin in a former life so please forgive my ignorance. I am trying to set up an Apache web server (HP-UX flavor) to conform with the DOD STIGs required for this project. I have the following items configured within my httpd.conf file:
LoadModule dir_module modules/mod_dir.so DirectoryIndex dft_index.html Permissions on this dft_index.html file are 666 owned by root:sys and when I browse to http://myservername/dft_index.html the file comes up fine.
However when I try to browse to http://myservername/cgi-bin/ I receive a 403 error. The error log shows that the browser is trying to access the cgi-bin directory itself instead of redirecting to the dft_index.html file.
I have also tried to create a .htaccess file with DirectoryIndex dft_index.html and set AllowOverride = ALL with the same results.