in reply to perl script to copy files as admin
The apache docs explain this fairly obtusely, so I just use this file in the secured directory:
and use the htpasswd command to generate the .htpasswd file. The .htpasswd file can be somewhere outside of the web hierarchy for security. This provides some security but is far from perfect; access it over https (although we know that's not perfect either, it's better than http)# .htaccess AuthUserFile /path/to/.htpasswd AuthGroupFile /dev/null AuthName "Secure Access" AuthType Basic <LIMIT GET> require valid-user </LIMIT>
Hope that helps,
SSF
|
|---|