31 Jul
2001
31 Jul
'01
08:34
Is there any other way to work around this or another means of securing my CGI-BIN with password security when accessing it with a web browser? thanks.
Put this in httpd.conf <Directory /usr/local/httpd/cgi-bin> Options ExecCGI AuthType Basic AuthName security AuthUserFile /etc/cgi.passwd require valid-user </Directory> then create your passwd file using htpasswd -c /etc/cgi.passwd username After this to subsequently add users please omit the -c as the -c tells it to create a new file. Noah.