In the recommended setup, just use port 8000

simplify simplify simplify. In particular, this creates a symmetry with a 'just run
manage.py runserver', which could be used for debugging

Also, turns out sockets aren't actually faster:
https://stackoverflow.com/a/54013893/339144

> In this particular setup no unix socket performance advantage.
This commit is contained in:
Klaas van Schelven
2024-05-20 10:16:12 +02:00
parent c92e3ec772
commit d4c74c22f8
+5 -20
View File
@@ -187,14 +187,13 @@ exit
This should bring you back to the root user.
Create 2 files:
Create a file:
`/etc/systemd/system/gunicorn.service` with the following contents:
```ini
[Unit]
Description=gunicorn daemon
Requires=gunicorn.socket
After=network.target
[Service]
@@ -205,30 +204,15 @@ Group=bugsink
Environment="PYTHONUNBUFFERED=1"
RuntimeDirectory=gunicorn
WorkingDirectory=/home/bugsink
ExecStart=/home/bugsink/venv/bin/gunicorn --workers=5 --access-logfile - --capture-output --error-logfile - bugsink.wsgi
ExecStart=/home/bugsink/venv/bin/gunicorn --bind="127.0.0.1:8000" --workers=5 --access-logfile - --capture-output --error-logfile - bugsink.wsgi
ExecReload=/bin/kill -s HUP $MAINPID
KillMode=mixed
TimeoutStopSec=5
PrivateTmp=true
[Install]
WantedBy=multi-user.target
```
`/etc/systemd/system/gunicorn.socket` with the following contents:
```
[Unit]
Description=gunicorn socket
[Socket]
ListenStream=/run/gunicorn.sock
SocketUser=www-data
[Install]
WantedBy=sockets.target
```
(In the example above we have set the number of workers to 5; a good starting point for this value in general is the
number of CPU cores on your server * 2 + 1, as per the [Gunicorn
documentation](https://docs.gunicorn.org/en/latest/design.html#how-many-workers))
@@ -375,8 +359,8 @@ server {
server_name YOURHOST;
location / {
# The socket is created by the gunicorn.socket systemd service
proxy_pass http://unix:/run/gunicorn.sock;
# Pass the request to Gunicorn via proxy_pass.
proxy_pass http://127.0.0.1:8000;
# Set the Host header to the original host.
proxy_set_header Host $host;
@@ -441,6 +425,7 @@ ExecStart=/home/bugsink/venv/bin/bugsink-manage runsnappea
ExecReload=/bin/kill -s HUP $MAINPID
KillMode=mixed
TimeoutStopSec=5
PrivateTmp=true
[Install]
WantedBy=multi-user.target