.htaccess 439 B

12345678910111213141516
  1. # Restrict access to .dot files to the public webdot server at research.att.com
  2. # if research.att.com ever changes their IP, or if you use a different
  3. # webdot server, you'll need to edit this
  4. <FilesMatch \.dot$>
  5. Allow from 192.20.225.0/24
  6. Deny from all
  7. </FilesMatch>
  8. # Allow access to .png files created by a local copy of 'dot'
  9. <FilesMatch \.png$>
  10. Allow from all
  11. </FilesMatch>
  12. # And no directory listings, either.
  13. Deny from all