falskで簡単なwebアプリを作成しています。
さくらのVPSを使用して公開したいのですが、uwsgiが起動しません。
uwsgi --ini uwsgi.ini
と実行すると、「[uWSGI] getting INI configuration from uwsgi.ini」と表示されますが、それ以降進まずにプロンプトも表示されません。
ログを見ると、
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 8323)
spawned uWSGI worker 1 (pid: 8324, cores: 1)
spawned uWSGI worker 2 (pid: 8325, cores: 1)
spawned uWSGI worker 3 (pid: 8326, cores: 1)
spawned uWSGI worker 4 (pid: 8327, cores: 1)
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x1d14fb0 pid: 8325 (default app)
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x1d14fb0 pid: 8326 (default app)
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x1d14fb0 pid: 8327 (default app)
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x1d14fb0 pid: 8324 (default app)
どうすればよいでしょうか?
uwsgi.iniファイルは以下の通りです。
[uwsgi]
base = /home/administrator/project/uwsgi.ini
master = true
wsgi-file = /home/administrator/project/app/views.py
lazy-apps = true
callable = app
workers = 4
socket = ///tmp/project.sock
chmod-socket = 666
logto = /home/administrator/project/log/uwsgi.log
pidfile = /home/administrator/project.pid
manage-script-name = true