Enfin, Flask + uWSGI + Nginx pourra accéder à l'API.
Tout d'abord, installez Nginx et assurez-vous que cela fonctionne.
$ sudo apt install -y nginx
$ sudo systemctl start nginx
$ curl http://localhost
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>
Puisque /etc/nginx.nginx.conf dit include /etc/nginx/conf.d/*.conf;, créez un fichier de configuration pour uWSGI dans /etc/nginx/conf.d/.
$ sudo vi /etc/nginx/conf.d/api.conf
server {
listen 80;
location / {
include uwsgi_params;
uwsgi_pass unix:///tmp/uwsgi.sock;
}
}
Il existe un paramètre de site par défaut dans / etc / nginx / sites-enabled / default, qui est inclus dans nginx.conf, alors commentez-le.
$ sudo vi /etc/nginx/nginx.conf
- include /etc/nginx/sites-enabled/*;
+ #include /etc/nginx/sites-enabled/*;
$ uwsgi --socket=/tmp/uwsgi.sock --wsgi-file=app.py --callable=app --chmod-socket=666
$ curl http://localhost/hello
{'message': 'Hello world!'}
Vous pouvez maintenant accéder à l'API avec Flask + uWSGI + Nginx.
Il est intéressant de regrouper les arguments dans ini.
$ vi uwsgi.ini
$ uwsgi uwsgi.ini
[uwsgi]
wsgi-file=app.py
callable=app
http=0.0.0.0:8000
socket=/tmp/uwsgi.sock
chmod-socket=666
Je me demande si je devrais en faire un service et le démarrer automatiquement.
Recommended Posts