Skip to content

Instantly share code, notes, and snippets.

@mariapaulinar
Created April 23, 2019 01:34
Show Gist options
  • Save mariapaulinar/66fd581fbf1e784419822b986b48910b to your computer and use it in GitHub Desktop.
Save mariapaulinar/66fd581fbf1e784419822b986b48910b to your computer and use it in GitHub Desktop.
Deshabilitar indexing de archivos con apache
<Directory /var/www/>
Options FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<FilesMatch "\.(env|json|config.js|md|gitignore|gitattributes|lock)$">
Require all denied
</FilesMatch>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment