mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-12 17:47:08 +01:00
Introduce ConfigurableWorker to make uvicorn respect FORCE_SCRIPT_NAME
This commit is contained in:
parent
5bf725546b
commit
c35c4eade9
2 changed files with 12 additions and 1 deletions
11
src/paperless/workers.py
Normal file
11
src/paperless/workers.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import os
|
||||
from uvicorn.workers import UvicornWorker
|
||||
from django.conf import settings
|
||||
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "paperless.settings")
|
||||
|
||||
|
||||
class ConfigurableWorker(UvicornWorker):
|
||||
CONFIG_KWARGS = {
|
||||
"root_path": settings.FORCE_SCRIPT_NAME or "",
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue