mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge pull request #255 from maphy-psd/master
add FORCE_SCRIPT_NAME to host paperless on a subpath url
This commit is contained in:
commit
2c55aad6c0
@ -80,6 +80,11 @@ PAPERLESS_PASSPHRASE="secret"
|
|||||||
# as is "example.com,www.example.com", but NOT " example.com" or "example.com,"
|
# as is "example.com,www.example.com", but NOT " example.com" or "example.com,"
|
||||||
#PAPERLESS_ALLOWED_HOSTS="example.com,www.example.com"
|
#PAPERLESS_ALLOWED_HOSTS="example.com,www.example.com"
|
||||||
|
|
||||||
|
# To host paperless under a subpath url like example.com/paperless you set
|
||||||
|
# this value to /paperless. No trailing slash!
|
||||||
|
#
|
||||||
|
# https://docs.djangoproject.com/en/1.11/ref/settings/#force-script-name
|
||||||
|
#PAPERLESS_FORCE_SCRIPT_NAME=""
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#### Software Tweaks ####
|
#### Software Tweaks ####
|
||||||
|
@ -70,9 +70,14 @@ class DocumentAdmin(CommonAdmin):
|
|||||||
created_.short_description = "Created"
|
created_.short_description = "Created"
|
||||||
|
|
||||||
def thumbnail(self, obj):
|
def thumbnail(self, obj):
|
||||||
|
if settings.FORCE_SCRIPT_NAME:
|
||||||
|
src_link = "{}/fetch/thumb/{}".format(
|
||||||
|
settings.FORCE_SCRIPT_NAME, obj.id)
|
||||||
|
else:
|
||||||
|
src_link = "/fetch/thumb/{}".format(obj.id)
|
||||||
png_img = self._html_tag(
|
png_img = self._html_tag(
|
||||||
"img",
|
"img",
|
||||||
src="/fetch/thumb/{}".format(obj.id),
|
src=src_link,
|
||||||
width=180,
|
width=180,
|
||||||
alt="Thumbnail of {}".format(obj.file_name),
|
alt="Thumbnail of {}".format(obj.file_name),
|
||||||
title=obj.file_name
|
title=obj.file_name
|
||||||
|
@ -47,6 +47,7 @@ _allowed_hosts = os.getenv("PAPERLESS_ALLOWED_HOSTS")
|
|||||||
if _allowed_hosts:
|
if _allowed_hosts:
|
||||||
ALLOWED_HOSTS = _allowed_hosts.split(",")
|
ALLOWED_HOSTS = _allowed_hosts.split(",")
|
||||||
|
|
||||||
|
FORCE_SCRIPT_NAME = os.getenv("PAPERLESS_FORCE_SCRIPT_NAME")
|
||||||
|
|
||||||
# Application definition
|
# Application definition
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user