コメントありがとうございます。 サービス終了した今なら、安く中古が手に入りそ…
nginxでサーバ名が長いって怒られた
ドメインにサブドメインをつけて、さらにサブサブドメインをつけて・・・
と、繰り返していたらnginxさんに怒られたので対処法をメモ
sudo systemctl restart nginx.service
で再起動が出来なかったのでログを確認
$systemctl status nginx.service nginx: [emerg] could not build server_names_hash, you should increase server_names_hash_bucket_size: 64
nginx.confをいじります
sudo vi /etc/nginx/nginx.conf http { server_names_hash_bucket_size 128; }
検索
コメントを残す