TEXT   190
Options Indexes MultiViews followSymlinks
By MarianoMar on 30th November 2024 05:39:03 AM


  1. Options +Indexes +MultiViews +FollowSymlinks
  2.  
  3. #+ExecCGI
  4.  
  5. #AddHandler server-parsed shtml
  6. #AddHandler cgi-script cgi pl
  7.  
  8. <Files .htaccess>
  9.  order allow,deny
  10.  deny from all
  11.  </Files>
  12.  
  13. #AuthName "Secure Area"
  14. AuthName "restricted stuff"
  15.  
  16. AuthName "Password Required"
  17. AuthType Basic
  18. AuthUserFile /user1/tsurin/www/htpasswd
  19.  
  20. #require user tsurin
  21. require valid-user
  22. #require file-owner
  23.  
  24. #Options +Indexes +MultiViews +FollowSymlinks
  25.  
  26. <Directory "/software/">
  27. Options +Indexes
  28. AllowOverride None
  29. </Directory>
  30.  
  31. # Protected Directory
  32. #
  33. <Directory "/software/PCMI/">
  34. Options +Indexes
  35. AllowOverride None
  36. AuthName "PCMI Directory"
  37. AuthType Basic
  38. AuthUserFile /etc/httpd/conf/passwd/pcmi.passwd
  39. Require valid-user
  40. </Directory>

Raw Paste

Login or Register to edit or fork this paste. It's free.