我非常想弄清楚为什么我不能使用uWSGI nginx和Ubuntu服务器部署我的烧瓶应用程序的问题。
这是我在nginx错误日志中的错误:
2019/05/12 09:00:19 [error] 10154#10154: *1 upstream timed out (110: Connection timed out) while reading response header from upstream, client: 24.27.57.18, server: itinareport.tk, request: "POST /login HTTP/1.1", upstream: "uwsgi://unix:/home/pinchrep2/itinarep/itinarep.sock", host: "www.itinareport.tk", referrer: "http://www.itinareport.tk/login"
使用烧瓶uWSGI和nginx设置好所有内容后,我可以输入我的域名,它会将我带到我的网页(登录页面)。尝试登录后,页面会暂停一段时间,然后我会收到504网关超时。
请告诉我该怎么做。这是我第一次部署应用程序,我花了大约一周的时间尝试不同的配置。我应该让您知道,我的flask应用程序通过ssh隧道连接到另一台服务器的数据库。不确定这是否也会导致这个问题。如果可能的话,请帮助我,或者给我指出正确的方向。
这是我的服务器块配置文件
server{
listen 80;
server_name itinareport.tk www.itinareport.tk;
location / {
include uwsgi_params;
uwsgi_pass unix:/home/pinchrep2/itinarep/itinarep.sock;
}
这是我的服役档案:
[Unit]
Description=uWSGI instance to serve itinarep
After=network.target
[Service]
User=pinchrep2
Group=www-data
WorkingDirectory=/home/pinchrep2/itinarep
Environment="PATH=/home/pinchrep2/itinarep/it_venv/bin"
ExecStart=/home/pinchrep2/itinarep/it_venv/bin/uwsgi --ini itinarep.ini
[Install]
WantedBy=multi-user.target
这是我的ini文件
[uwsgi]
module = wsgi:app
master = true
processes = 5
socket = itinarep.sock
chmod-socket = 660
vacuum = true
die-on-term=true
有时,在使用 Keras 等库部署烧瓶应用程序时,它们在 uWSGI 中的线程化方面会遇到一些问题。
您可以更改myproject.ini中的一些内容以使其正常工作:
master = false <-------- this
processes = 1 <--------- and this
所以现在您的myproject.ini文件可能看起来像这样:
[uwsgi]
module = wsgi:app
master = false <-------- this
processes = 1 <--------- and this
socket = myproject.sock
chmod-socket = 660
vacuum = true
die-on-term = true
cheaper = 0 <----------- also this, if option 1 is not enough or doesn't work
lazy-apps = true <------ in some case, this might help