Schließlich kann Flask + uWSGI + Nginx die API treffen.
Installieren Sie zuerst Nginx und stellen Sie sicher, dass es funktioniert.
$ 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>
Erstellen Sie eine Konfigurationsdatei für uWSGI in /etc/nginx/conf.d/, da es als include /etc/nginx/conf.d/*.conf; in /etc/nginx.nginx.conf geschrieben ist.
$ sudo vi /etc/nginx/conf.d/api.conf
server {
listen 80;
location / {
include uwsgi_params;
uwsgi_pass unix:///tmp/uwsgi.sock;
}
}
In / etc / nginx / sites-enabled / default gibt es eine Standard-Site-Einstellung, die in der Datei nginx.conf enthalten ist. Kommentieren Sie sie daher aus.
$ 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!'}
Sie können die API jetzt mit Flask + uWSGI + Nginx aufrufen.
Es ist ordentlich, die Argumente in ini zu gruppieren.
$ 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
Ich frage mich, ob ich es zu einem Dienst machen und automatisch starten soll.
Recommended Posts