API : fix erreur 404

manquait mount = /hello=wsgi:app dans le hello.ini
This commit is contained in:
MaelREBOUX 2021-04-05 16:57:47 +02:00
parent bda988c0d7
commit f0844bc5f0
2 changed files with 9 additions and 6 deletions

View file

@ -44,10 +44,10 @@ Faire `ctrl + C` pour arrêter.
On utilise les fichiers wsgi.py et hello.ini 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 ```bash
uwsgi -s /tmp/hello.sock --manage-script-name --mount /hello=wsgi:app --chmod-socket=666 --master uwsgi --ini hello.ini
``` ```

View file

@ -1,16 +1,19 @@
[uwsgi] [uwsgi]
module = wsgi:app
manage-script-name = true
mount = /hello=wsgi:app
master = true master = true
processes = 5 processes = 5
socket = /tmp/hello.sock socket = /tmp/hello.sock
chmod-socket = 660 chmod-socket = 660
vacuum = true vacuum = true
die-on-term = true die-on-term = true
logto = /var/log/uwsgi/%n.log
uid = www-data uid = www-data
gid = www-data gid = www-data
logto = /var/log/uwsgi/%n.log