3
I am trying to set up an SSL certificate on my web server that uses Windows 2008 RC2 and Nginx. I always come across an error in the log file and this causes Nginx to not run. The error is:
Error in initializing Nignx: ngx_master_520 the Event was not signaled for 5s
The archive nginx.conf
is configured as below:
server {
listen 443;
ssl on;
ssl_certificate c: /nginx/ssl/SSL.pem;
ssl_certificate_key c: /nginx/ssl/privatekey.key;
server_name localhost;
location / {
root html;
index index.html;
}
}
Carlos, this happens with a certain frequency, so much so that there is a reason off-topic specific. Just out of curiosity about UI/UX: you went from one site to another and didn’t realize it? What’s the reason for the confusion?
– brasofilo
You have the
passphrase
in your certificate? This is usually the origin of your mistake. Removing thepassphrase
of the certificate shall. (How to remove English)– Zuul
@brasofilo is that before I already had an account on the site in English and when I went to post I must have clicked to go to the Portuguese version, I did not know this version.
– Carlos Andrade
@Zuul in the certificate has yes passphrase, I’ve been searching but I couldn’t find how to generate the file. CSR without passphrase but I couldn’t find.
– Carlos Andrade
@Carlosandrade Look here, it’s in English but it has the commands for the type of certificate you mentioned: Generating a Certificate Signing Request (CSR).
– Zuul
@Zuul the solution for sure would be this. Now I’m just bumping into how to run Nginx without the passphrase, because I use Windows Server 2008 RC2. I found several articles but only about Linux.
– Carlos Andrade
@Carlosandrade With the certificate without the
passphrase
what mistake you’re making?– Zuul