We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
リロードスクリプトの処理手順では、ドメイン一つずつconfigを入れていって、その都度 nginx -t して nginx -s reload しているため。 ドメイン一つあたり1秒以上かかるため、ドメインが多くなるとリロード処理が全て終わるまでにより多くの時間を要する。
nginx -t
nginx -s reload
nginx -s reload は、最後に一回だけ行うようにする。
The text was updated successfully, but these errors were encountered:
lobin-z0x50
No branches or pull requests
原因
リロードスクリプトの処理手順では、ドメイン一つずつconfigを入れていって、その都度
nginx -t
してnginx -s reload
しているため。ドメイン一つあたり1秒以上かかるため、ドメインが多くなるとリロード処理が全て終わるまでにより多くの時間を要する。
対応方針
nginx -s reload
は、最後に一回だけ行うようにする。The text was updated successfully, but these errors were encountered: