nginxのエラーにバージョン情報を表示しない
#nginx
nginx.confのhttpディレクティブに server_tokens off; を追加
$ sudo nano /etc/nginx/nginx.conf
code: nginx
http {
server_tokens off;
~
}