source: lab.git/TipAndDoc/apache2/conf.d/denydot @ e135cc7

trunk
Last change on this file since e135cc7 was e135cc7, checked in by mitty <mitty@…>, 13 years ago
  • publish internal tools for svn/trac

git-svn-id: https://lab.mitty.jp/svn/lab/trunk@116 7d2118f6-f56c-43e7-95a2-4bb3031d96e7

  • Property mode set to 100644
File size: 225 bytes
Line 
1# prevent files and directories started with 'dot' (ex: .svn/)
2# from being viewed
3
4<FilesMatch "^\.">
5    Order Allow,Deny
6    Deny from all
7</FilesMatch>
8
9<DirectoryMatch "/\.">
10    Order Allow,Deny
11    Deny from all
12</DirectoryMatch>
Note: See TracBrowser for help on using the repository browser.