Just updated from 24.7.9 to 24.7.10_1 and NGINX stopped working.
Probably because the change:
"system: remove the SSL bundles in default locations"
NGINX can't find /etc/ssl/cert.pem.
For a quickfix I created a symlink to /usr/local/etc/ssl/cert.pem.
Probably because the change:
"system: remove the SSL bundles in default locations"
NGINX can't find /etc/ssl/cert.pem.
Code Select
nginx: [emerg] SSL_CTX_load_verify_locations("/etc/ssl/cert.pem") failed (SSL: error:80000002:system library::No such file or directory:calling fopen(/etc/ssl/cert.pem, r) error:10000080:BIO routines::no such file error:05880002:x509 certificate routines::system lib)
nginx: configuration file /usr/local/etc/nginx/nginx.conf test failed
For a quickfix I created a symlink to /usr/local/etc/ssl/cert.pem.
Code Select
ln -s /usr/local/etc/ssl/cert.pem /etc/ssl/cert.pem