「nginx入門」画像のアクセスログを除外する方法

2018年7月1日

location / {
if ($uri ~ \.(gif|jpg|png|ico|bmp)$) {
access_log off;
}
//some code
}

Nginx

Posted by arkgame