mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Use --noreload for permanent server start commands
Without it, the server is highly resource-intensive even when running idle
This commit is contained in:
parent
f61fa06993
commit
1f2079f65a
@ -24,7 +24,7 @@ services:
|
|||||||
# value with nothing.
|
# value with nothing.
|
||||||
environment:
|
environment:
|
||||||
- PAPERLESS_OCR_LANGUAGES=
|
- PAPERLESS_OCR_LANGUAGES=
|
||||||
command: ["runserver", "--insecure", "0.0.0.0:8000"]
|
command: ["runserver", "--insecure", "--noreload", "0.0.0.0:8000"]
|
||||||
|
|
||||||
consumer:
|
consumer:
|
||||||
build: ./
|
build: ./
|
||||||
|
@ -352,7 +352,7 @@ after restarting your system:
|
|||||||
respawn limit 10 5
|
respawn limit 10 5
|
||||||
|
|
||||||
script
|
script
|
||||||
exec /srv/paperless/src/manage.py runserver 0.0.0.0:80
|
exec /srv/paperless/src/manage.py runserver --noreload 0.0.0.0:80
|
||||||
end script
|
end script
|
||||||
|
|
||||||
Note that you'll need to replace ``/srv/paperless/src/manage.py`` with the
|
Note that you'll need to replace ``/srv/paperless/src/manage.py`` with the
|
||||||
|
@ -33,8 +33,11 @@ The webserver is started via the ``manage.py`` script:
|
|||||||
By default, the server runs on localhost, port 8000, but you can change this
|
By default, the server runs on localhost, port 8000, but you can change this
|
||||||
with a few arguments, run ``manage.py --help`` for more information.
|
with a few arguments, run ``manage.py --help`` for more information.
|
||||||
|
|
||||||
Note that this command runs continuously, so exiting it will mean your webserver
|
Add the option ``--noreload`` to reduce resource usage. Otherwise, the server
|
||||||
disappears. If you want to run this full-time (which is kind of the point)
|
continuously polls all source files for changes to auto-reload them.
|
||||||
|
|
||||||
|
Note that when exiting this command your webserver will disappear.
|
||||||
|
If you want to run this full-time (which is kind of the point)
|
||||||
you'll need to have it start in the background -- something you'll need to
|
you'll need to have it start in the background -- something you'll need to
|
||||||
figure out for your own system. To get you started though, there are Systemd
|
figure out for your own system. To get you started though, there are Systemd
|
||||||
service files in the ``scripts`` directory.
|
service files in the ``scripts`` directory.
|
||||||
|
@ -4,7 +4,7 @@ Description=Paperless webserver
|
|||||||
[Service]
|
[Service]
|
||||||
User=paperless
|
User=paperless
|
||||||
Group=paperless
|
Group=paperless
|
||||||
ExecStart=/home/paperless/project/virtualenv/bin/python /home/paperless/project/src/manage.py runserver 0.0.0.0:8000
|
ExecStart=/home/paperless/project/virtualenv/bin/python /home/paperless/project/src/manage.py runserver --noreload 0.0.0.0:8000
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
|
Loading…
x
Reference in New Issue
Block a user