Now that I have nginx setup I need to be able to hide my .git directories. What kind of rewrite would I need to stop prying eyes? And where in the server {} or http {} block would it go?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
http {
  server {
    location ~ /\.git {
      deny all;
    }
  }
}
link|improve this answer
Does this work if the .git folder is in a subdirectory like /folder/.git/? – Xeoncross Jun 8 '10 at 17:55
Yes, it does. "location ~" matches regular expression, not a sub-path. – rzab Jun 9 '10 at 8:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.