Closed ifelsefi closed 2 years ago
I've never done that before, but I'd play around with the uwsgi params file, e.g., https://serverfault.com/questions/771177/how-do-i-configure-a-whitelist-of-ssl-tls-protocols-in-uwsgi
I am trying to get uwsgi
to use ca path at /etc/ssl which has cert bundle for verifying my Gitlab instance. This would allow uwsgi to verify the identify of the remote Gitlab.
Adding these vars fixed the problem. I can now use Gitlab oAuth:
SSL_CERT_FILE=/etc/pki/tls/certs/ca-bundle.crt
SSL_CERT_DIR=/etc/pki/tls/certs
REQUESTS_CA_BUNDLE=/etc/pki/tls/certs/ca-bundle.crt
Hi
Can I configure
uwsgi_1
worker to ignore SSL cert at my local gitlab instance:The workers are mounting
/etc/ssl
which has the root ca bundle used by the remote Gitlab server.Callback URL is correct.
Thank you!