用于 https 配置的 UWSGI 不起作用
UWSGI for https configuration is not working
UWSGI 版本 - 2.0.18
Openssl- 1.0.2k-fips
Python 2.7
获取错误:
uwsgi: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory
当我们执行 pip install uWSGI 时,它会自动绑定到 openssl 库。
但请确保您已经安装了 openssl 和 openssl-devel 软件包。
我试过以下版本:
Python- 3.6
UWSGI-2.0.18
命令:
创建虚拟环境并安装 flask 和 uWSGI:
virtualenv -p /usr/bin/python3.6 testing
source testing/bin/activate
pip install flask
pip install uWSGI
创建证书:
openssl genrsa -out foobar.key 2048
openssl req -new -key foobar.key -out foobar.csr
openssl x509 -req -days 365 -in foobar.csr -signkey foobar.key -out foobar.crt
创建示例 Python 文件:foobar.py
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return [b"Hello World"]
运行 uWSGI:
uwsgi --shared-socket 0.0.0.0:443 --uid roberto --gid roberto --https =0,foobar.crt,foobar.key --wsgi-file foobar.py
确保不要与安装在虚拟环境中的 uWSGI 和 root 用户混淆。
遵循文档:
https://uwsgi-docs.readthedocs.io/en/latest/WSGIquickstart.html
UWSGI 版本 - 2.0.18
Openssl- 1.0.2k-fips
Python 2.7
获取错误:
uwsgi: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory
当我们执行 pip install uWSGI 时,它会自动绑定到 openssl 库。
但请确保您已经安装了 openssl 和 openssl-devel 软件包。
我试过以下版本:
Python- 3.6
UWSGI-2.0.18
命令:
创建虚拟环境并安装 flask 和 uWSGI:
virtualenv -p /usr/bin/python3.6 testing
source testing/bin/activate
pip install flask
pip install uWSGI
创建证书:
openssl genrsa -out foobar.key 2048
openssl req -new -key foobar.key -out foobar.csr
openssl x509 -req -days 365 -in foobar.csr -signkey foobar.key -out foobar.crt
创建示例 Python 文件:foobar.py
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return [b"Hello World"]
运行 uWSGI:
uwsgi --shared-socket 0.0.0.0:443 --uid roberto --gid roberto --https =0,foobar.crt,foobar.key --wsgi-file foobar.py
确保不要与安装在虚拟环境中的 uWSGI 和 root 用户混淆。
遵循文档:
https://uwsgi-docs.readthedocs.io/en/latest/WSGIquickstart.html