Please use this template for troubleshooting questions.
My issue:
the following error was raised in the error log:
200#5444: the event “ngx_master_200” was not signaled for 5s
How I encountered the problem:
set up nginx on a Windows server using the default configuration, but add by websites cert.pem and cert.key file to the default.
# HTTPS server
#
server {
listen 443 ssl;
server_name localhost;
ssl_certificate server.pem;
ssl_certificate_key server.key;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
location / {
root html;
index index.html index.htm;
}
}
}
Solutions I’ve tried:
Version of NGINX or NGINX adjacent software (e.g. NGINX Gateway Fabric):
I tried nginx-1.28.0 and nginx-1.29.0 same issue
Deployment environment:
Windows 2019
nginx.conf (2.7 KB)
Minimal NGINX config to reproduce your issue (preferably running on https://tech-playground.com/playgrounds/nginx for ease of debugging, and if not as a code block): (Tip → Run nginx -T to print your entire NGINX config to your terminal.)
NGINX access/error log: (Tip → You can usually find the logs in the /var/log/nginx directory.)