mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-01-26 06:58:10 +01:00
Gunicorn should bind to both ipv4 and ipv6
As per https://docs.gunicorn.org/en/stable/settings.html#bind
This commit is contained in:
parent
c54d26ed19
commit
37caf6a64a
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue