API : fix erreur 404
manquait mount = /hello=wsgi:app dans le hello.ini
This commit is contained in:
parent
bda988c0d7
commit
f0844bc5f0
|
@ -44,10 +44,10 @@ Faire `ctrl + C` pour arrêter.
|
|||
|
||||
On utilise les fichiers wsgi.py et hello.ini
|
||||
|
||||
On teste si uWSGI et le socket fonctionne :
|
||||
On teste si uWSGI et le socket fonctionne en utilisant le fichier de configuration :
|
||||
|
||||
```bash
|
||||
uwsgi -s /tmp/hello.sock --manage-script-name --mount /hello=wsgi:app --chmod-socket=666 --master
|
||||
uwsgi --ini hello.ini
|
||||
```
|
||||
|
||||
|
||||
|
|
|
@ -1,16 +1,19 @@
|
|||
[uwsgi]
|
||||
module = wsgi:app
|
||||
|
||||
manage-script-name = true
|
||||
mount = /hello=wsgi:app
|
||||
|
||||
master = true
|
||||
processes = 5
|
||||
|
||||
socket = /tmp/hello.sock
|
||||
chmod-socket = 660
|
||||
|
||||
vacuum = true
|
||||
|
||||
die-on-term = true
|
||||
|
||||
logto = /var/log/uwsgi/%n.log
|
||||
|
||||
uid = www-data
|
||||
gid = www-data
|
||||
|
||||
logto = /var/log/uwsgi/%n.log
|
||||
|
||||
|
|
Loading…
Reference in a new issue