ubuntu 的 UWSGI https 配置

UWSGI https configuration for ubuntu

我有一个 运行ning 的 django 应用程序,在 redhat 7.3 中使用以下 uwsgi 配置:

[uwsgi]
project = helloworld
base = %d

chdir=%(base)
module=helloworld.wsgi:application

plugins = router_redirect
route-if = equal:${HTTPS};on addheader:Strict-Transport-Security: max-age=31536000

master = true
processes = 1

enable-threads = true
threads = 1

max-requests = 2000

shared-socket = 0.0.0.0:443
https =  =0,cert/hello.crt,cert/hello.key,HIGH

pidfile = hello_uwsgi.pid

vacuum = true

die-on-term = true

但是,当我在 Ubuntu 16.04.1 LTS 上 运行 它时,出现以下错误:

your processes number limit is 31283
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
Python version: 3.5.2 (default, Nov 17 2016, 17:05:23)  [GCC 5.4.0 20160609]
Python main interpreter initialized at 0x1dfabe0
python threads support enabled
The -s/--socket option is missing and stdin is not a socket.
VACUUM: pidfile removed.

报错是不是uwsgi绑定端口失败? 在 ubuntu 中使用 "shared-socket" 有什么特殊的方法吗? 我需要在端口 443 和 8443 上都有这个 运行ning。我已经尝试了端口 443 和 8443 的上述配置但没有成功。

提前致谢。

我通过从源代码重新安装 python 3.5.2 使它在 ubuntu 中工作。

我猜有些人 issue/incompatibility 使用 apt-get 安装 python 3.5.2。