Hello! On Thu, Feb 24, 2022 at 11:27:17AM -0500, swatluv wrote:
> I started using nginx a week before and all naive. My client want to access > CMS using domain-int.com/myapplication for which I need to set up nginx. But > I am getting error when I edit my conf file ( I change server section) as > shown below > server { > listen 443 ssl; > server_name domain-int.com; > ssl_certificate > C:/Users/me/Documents/domain-certificates-https/domain-int-crt.crt; > ssl_certificate_key > C:/Users/me/Documents/domain-certificates-https/domain-int-private.key; > > ssl_session_cache shared:SSL:1m; > ssl_session_timeout 5m; > > ssl_ciphers HIGH:!aNULL:!MD5; > ssl_prefer_server_ciphers on; > > location / { > # Or whatever port your server is running on > proxy_pass http://127.0.0.1:4502; > > } > } > > Issue : when I run start nginx on cmd, it prompt me for pem password which > is admin for me and then I see error in log file "the event > "ngx_master_14268" was not signaled for 5s" Try removing the password from the SSL key: this is something you probably want to do anyway to ensure automatic startup. Alternatively, use the ssl_password_file directive (http://nginx.org/r/ssl_password_file) to provide password for the key. -- Maxim Dounin http://mdounin.ru/ _______________________________________________ nginx mailing list -- nginx@nginx.org To unsubscribe send an email to nginx-le...@nginx.org