Skip to content

Instantly share code, notes, and snippets.

@jwthanh
Forked from sergejmueller/nginx.conf
Created October 13, 2017 13:00
Show Gist options
  • Save jwthanh/c9adfa59e5fcdbf00283598704f85e62 to your computer and use it in GitHub Desktop.
Save jwthanh/c9adfa59e5fcdbf00283598704f85e62 to your computer and use it in GitHub Desktop.
Stop search engines from indexing .txt, .log, .xml, .css and .js files in Nginx
location ~* \.(txt|log|xml|css|js)$ {
add_header X-Robots-Tag noindex;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment