You'll see which "configuration flags" it uses when it's finished compiling. If it says `ssl = True`, then you have SSL support in uWSGI, linked against your system SSL libraries.
There's more information about the build system here -- https://uwsgi-docs.readthedocs.org/en/latest/Install.html https://uwsgi-docs.readthedocs.org/en/latest/BuildSystem.html For your case, the easiest would be, I think, to just disable ssl in the default buildconf and rebuild. $ cd ~/uwsgi-2.0.9 $ echo "ssl = false" >> buildconf/default.ini $ make clean $ make Best regards, Aarni -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Jerry OELoo Sent: 10. helmikuuta 2015 10:27 To: uWSGI developers and users list Subject: Re: [uWSGI] [UWSGI] Why python load different library in uwsgi I just download uwsgi source from web site, and make it. I do not know where to configure uWSGI with SSL support. Is there any detail information about it. Thanks! On Tue, Feb 10, 2015 at 4:14 PM, Aarni Koskela <[email protected]> wrote: > If you have compiled uWSGI with SSL support, it will link against some > version of OpenSSL, most likely the system default. > > At a hunch, that could be the problem here. > > Aarni > > -----Original Message----- > From: [email protected] > [mailto:[email protected]] On Behalf Of Jerry OELoo > Sent: 10. helmikuuta 2015 5:22 > To: [email protected] > Subject: [uWSGI] [UWSGI] Why python load different library in uwsgi > > Hi All: > I am using uwsgi 2.0.8 for my web app. > I use a python script, ex, api.py. > and in api.py I am using CDLL to load abc.so library. and I am linking abc.so > with openssl 1.0.2 staticly. > > so, when I using command "python api.py", It will output openssl version with > 1.0.2 But when I using uwsgi to load api.py, It will output openssl version > with 1.0.1f which is system default installed openssl library. > > I am curious that about this strange behavior, Please give me some > suggestions. Thanks! > > -- > Rejoice,I Desire! > _______________________________________________ > uWSGI mailing list > [email protected] > http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi > _______________________________________________ > uWSGI mailing list > [email protected] > http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi -- Rejoice,I Desire! _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
