Skip to content

Instantly share code, notes, and snippets.

@sugumura
Created March 12, 2018 02:48
Show Gist options
  • Save sugumura/c4cd47988167e2ff69b29083cb08e3d7 to your computer and use it in GitHub Desktop.
Save sugumura/c4cd47988167e2ff69b29083cb08e3d7 to your computer and use it in GitHub Desktop.
NginxでSlackbotのアクセスを弾きたい場合
# ref: https://api.slack.com/robots
location / {
if ( $http_user_agent ~* (Slackbot-LinkExpanding) ) {
return 403;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment