Gunicorn should bind to both ipv4 and ipv6

As per https://docs.gunicorn.org/en/stable/settings.html#bind
This commit is contained in:
Andrew Rowson 2020-12-24 11:53:20 +00:00 committed by GitHub
parent c54d26ed19
commit 37caf6a64a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ loglevel=info ; log level; default info; others: debug,warn,trace
user=root
[program:gunicorn]
command=gunicorn -c /usr/src/paperless/gunicorn.conf.py -b 0.0.0.0:8000 paperless.wsgi
command=gunicorn -c /usr/src/paperless/gunicorn.conf.py -b '[::]:8000' paperless.wsgi
user=paperless
stdout_logfile=/dev/stdout