Advertisement
Guest User

Untitled

a guest
May 25th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. location ^~ /.(bzr|git|hg|svn|cvs) {
  2. return 404;
  3. }
  4.  
  5. location ^~ /node_modules {
  6. return 404;
  7. }
  8.  
  9. location ^~ /Gruntfile.js {
  10. return 404;
  11. }
  12.  
  13. location ^~ /README.md {
  14. return 404;
  15. }
  16.  
  17. location ^~ /package.json {
  18. return 404;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement